remoteit-api 0.14.2

A wrapper around the Remote.it GraphQL API, also implementing the custom request signing.
Documentation
#Retrieves all organizations and roles a user is a member of

query GetOrganizationSelfMembership {
    login {
        membership {
            # This is your role and permissions
            customRole {
                id
                name
                permissions
            }
            organization {
                id
                name
                account {
                    id
                    email
                }
                created
            }
        }
    }
}