OBJECT
GraphQLUser
link GraphQL Schema definition
1 type GraphQLUser { 2 : String 3 4 # Description of this token, should reflect its purpose and ownership. 5 # For example, "Syncing product catalog via Lambda" or "John's personal token". 6 : String! 7 8 # Legal entity responsible for maintaining the token (whoever is building this integration). 9 # For example, "Web Agency Inc". 10 : String 11 12 # Logical integration name or a Centra module identifier. 13 # Must be set to get access to a conversion table and subscribe to events. 14 # For example, "Migration from SOAP" or "Google feed generation". 15 : String 16 17 # Email that can be used as a point of contact in case any questions or troubleshooting. 18 : String 19 20 # Phone number that can be used as a point of contact in urgent cases. 21 : String 22 23 # All elements are always returned 24 : [String!]! 25 26 : GraphQLUserRestrictions! 27 28 }