OBJECT
Property
Property definition
# GraphQL Schema definition
1 type Property implements AdminSharedAttributesInterface { 2 # Type of the property 3 PropertyTypeEnum! : 4 # Defines a relationship with other model schema or the user schema. Used during 5 # importing/exporting data. 6 String : 7 JSONDate! : 8 # Default value for new objects 9 String : 10 ID! : 11 HashObject : 12 # Name of the property 13 String! : 14 # Options, used only by type upload 15 HashObject : 16 # defines the physical path of the file 17 String : 18 # Id of the schema to which this property definition belongs 19 ID! : 20 # Type of the schema to which this property definition belongs 21 String! : 22 JSONDate! : 23 }
# Required by
- AdminPropertiesInterface null
- ModelSchema Schema for model (old CustomModelType)
- RootMutation null
- Table Table definition (old ModelSchema)
- TransactableSchema Schema for transactable (old name was TransactableType). Deprecated, use ModelSchema
- UserProfileSchema Schema for user profile (old name was UserProfileType)