user.graphql 224 B

123456789101112
  1. query user(
  2. $userId: ID
  3. $userInternalId: Int
  4. $secondaryOrganizationsCount: Int
  5. ) {
  6. user(user: { userId: $userId, userInternalId: $userInternalId }) {
  7. ...userDetailAttributes
  8. policy {
  9. update
  10. }
  11. }
  12. }