add schema to user details query

This commit is contained in:
Austin Alvarado
2024-01-20 18:46:05 +00:00
parent 4c47d06c9b
commit c9f9a687a3

View File

@@ -13,4 +13,14 @@ query GetUserDetails($id: String!) {
displayName
}
}
schema {
user_attrubutes {
attributes {
name
attributeType
isEditable
isHardcoded
}
}
}
}