query

userAttributes

Get the list of user attributes.
Arguments
slug
String
Response
attributes
JSON
Describes the structure of user attribute.
Query
1query userAttributes($slug: String) {
2 userAttributes(slug: $slug) {
3 attributes
4 }
5}
Try it
Input Variables
1{
2 "slug": "slug"
3}
Response
1{
2 "userAttributes": {
3 "attributes": {}
4 }
5}