remoteit-api 0.14.2

A wrapper around the Remote.it GraphQL API, also implementing the custom request signing.
Documentation
#Query the organization and its members
#Returns ID that can be used in subsequent queries
#and each members role

query GetOwnedOrganization {
    login {
        organization {
            # this is your organization, not any that you belong to as a member
            id
            name
            created
            domain
            color
            roles {
                id
                name
                permissions
                created
                access
                system
                updated
            }
            members {
                user {
                    id
                    email
                }
                customRole {
                    id
                    name
                    system
                    access
                }
                license
                created
            }
        }
    }
}