OBJECT
Represents user role in the organization
type OrganizationRole {# Unique identifierid: Int! # Display nametitle: String! # Do all members have public information?publicInfo: Boolean! # Tabler icon of the role# # List available at https://tablericons.com/# Can be directly copied from thereicon: String # List of members with given rolemembers: [Member]! }