Skip to content

SmartPhrase

A smart phrase object

Fields

created_at · String! · required · The time when the smart phrase was created
cursor · Cursor! · required · Pagination cursor
id · ID! · required · The unique identifier of the smart phrase
name · String · The name of the smart phrase
phrase · String · The content of the smart phrase
updated_at · ISO8601DateTime · The time when the smart phrase was last updated
user · User · The smart phrase owner

Used By

Definition

"""
A smart phrase object
"""
type SmartPhrase {
"""
The time when the smart phrase was created
"""
created_at: String!
"""
Pagination cursor
"""
cursor: Cursor!
"""
The unique identifier of the smart phrase
"""
id: ID!
"""
The name of the smart phrase
"""
name: String
"""
The content of the smart phrase
"""
phrase: String
"""
The time when the smart phrase was last updated
"""
updated_at: ISO8601DateTime
"""
The smart phrase owner
"""
user: User
}