OBJECT
Transactable
# GraphQL Schema definition
1 type Transactable implements RelationOnDemandInterface { 2 JSONDate : 3 User : 4 ID : 5 # Arguments 6 # name: [Not documented] 7 String!): CustomAddrress ( : 8 # Arguments 9 # name: [Not documented] 10 String!): [ListingImage] ( : 11 # Fetch any customization by name or id; ex: hair_color: customization(name: 12 # "hair_color") 13 # 14 # Arguments 15 # id: [Not documented] 16 # name: [Not documented] 17 # user_id: [Not documented] 18 ID, : String, : ID): [Customization!] ( : 19 ID : 20 ID! : 21 Boolean : 22 String : 23 # Fetch any Property by name; ex: hair_color: property(name: "hair_color") 24 # 25 # Arguments 26 # name: [Not documented] 27 String!): String ( : 28 # Arguments 29 # name: [Not documented] 30 String!): [String!]! ( : 31 # Defines belongs-to relation with other model; ex: parent: model(model_name: 32 # "parent", join_on_property: "parent_id") { id } 33 # 34 # Arguments 35 # foreign_property: Load resources with foreign_property == 36 # join_on_property 37 # join_on_property: Load remote resource with id == 38 # join_on_property 39 # model_schema_name: Joins model [formaly customization] with 40 # custom-model-type-name == model_name 41 ( 42 String, : 43 String, : 44 String : 45 ): ListingsCustomization 46 # Defines has-many relation with other model, returns maximum of 10000 records at 47 # once; ex: children: models(model_name: "child", join_on_property: "parent_id", 48 # foreign_property: "parent_id") { id } 49 # 50 # Arguments 51 # foreign_property: Load resources with foreign_property == 52 # join_on_property 53 # join_on_property: Load resources with foreign_property == 54 # join_on_property 55 # model_schema_name: Joins model [formaly customization] with 56 # custom-model-type-name == model_name 57 ( 58 String!, : 59 String!, : 60 String] : [ 61 ): [ListingsCustomization!] 62 # Defines relation with other user, returns maximum of 10000 records at once; ex: 63 # invited_by: user(join_on_property: "invited_by_id") { id } 64 # 65 # Arguments 66 # foreign_property: [Not documented] 67 # join_on_property: [Not documented] 68 String, : String): User ( : 69 String! : 70 JSONDate : 71 }