Skip to main content

Organization

A Flux organization.

type Organization {
uid: OrganizationUid!
handle: UserOrOrganizationHandle!
displayName: String!
visibility: OrganizationVisibility!
email: EmailAddress
description: String
picture: URL
websiteUrl: URL
githubHandle: GithubHandle
twitterHandle: TwitterHandle
createdAt: DateTime!
updatedAt: DateTime
members: [OrganizationMember!]!
followerCount: Int
componentsCount: Int
projectsCount: Int
projects(
page: Page
): Projects
project(
by: ProjectSlugOrUid!
): Project
}

Fields

Organization.uid ● OrganizationUid! non-null scalar

The organizations's primary unique identifier.

Organization.handle ● UserOrOrganizationHandle! non-null scalar

The organization's unique account name.

Organization.displayName ● String! non-null scalar

The organizations's full display name.

Organization.visibility ● OrganizationVisibility! non-null enum

The organization's public visibility.

Organization.email ● EmailAddress scalar

The organization's contact email address.

Organization.description ● String scalar

The organization's description as displayed on their profile page.

Organization.picture ● URL scalar

The organization's avatar image as displayed on their profile page.

Organization.websiteUrl ● URL scalar

The organization's website URL.

Organization.githubHandle ● GithubHandle scalar

The organization's Github handle.

Organization.twitterHandle ● TwitterHandle scalar

The organization's Twitter handle.

Organization.createdAt ● DateTime! non-null scalar

The time the organization was created.

Organization.updatedAt ● DateTime scalar

The time the organization information was last updated.

Organization.members ● [OrganizationMember!]! non-null object

The full list of user membership for this organization.

Organization.followerCount ● Int scalar

The count of users that are following this organization.

Organization.componentsCount ● Int scalar

The count of components that have been published under this organization's profile.

Organization.projectsCount ● Int scalar

The count of projects under this organization's profile.

Organization.projects ● Projects object

The list of projects under this organization that are visible to you.

Organization.projects.page ● Page input

Organization.project ● Project object

Retrieve a specific project from this organization.

Organization.project.by ● ProjectSlugOrUid! non-null scalar

Returned By

organization query

Member Of

Account object