organization
Fetch your organization's details, including custom attributes and logo.
query {
organization(organizationId: "my-org") {
id
name
subscriptionStatus
customAttributes { items { key scope required } }
}
}
organization(
organizationId: ID!
): Organization
Arguments
organization.organizationId ● ID! non-null scalar {#organization-id}
Your organization's unique identifier.
Type
Organization object
The top-level account that owns all your infrastructure, projects, and team members.
An organization is the root of the Massdriver resource hierarchy. Everything you build and deploy lives under an organization: Projects contain your infrastructure designs, Environments (like staging and production) are where those designs come to life, and Instances are the actual running cloud resources.
Members access resources through group memberships with role-based permissions. Custom attributes defined at the organization level govern attribute metadata across all child resources.
Administrative fields (billing, members, customAttributes) resolve to null for
callers who lack the corresponding ABAC action; in that case a top-level FORBIDDEN
error is added to the response while the rest of the organization still resolves.