INTERFACE
HasUsersInterface
# GraphQL Schema definition
1 interface HasUsersInterface { 2 # Defines relation with other user; ex: invited_by: related_user(join_on_property: 3 # "invited_by_id") { id } 4 # 5 # Arguments 6 # filter: [Not documented] 7 # foreign_property: Load resources with foreign_property == 8 # join_on_property 9 # join_on_property: 10 # sort: [Not documented] 11 ( 12 UsersFilterInput, : 13 String, : 14 String, : 15 UsersSortInput!] : [ 16 ): User 17 # Defines has-many relation with other user; ex: children: users(join_on_property: 18 # "parent_id", foreign_property: "parent_id") { id } 19 # 20 # Arguments 21 # filter: [Not documented] 22 # foreign_property: Load resources with foreign_property == 23 # join_on_property 24 # join_on_property: Load resources with foreign_property == 25 # join_on_property 26 # limit: [Not documented] 27 # sort: [Not documented] 28 ( 29 UsersFilterInput, : 30 String!, : 31 String!, : 32 Int, : 33 UsersSortInput!] : [ 34 ): [User!] 35 }