Skip to main content
Version: 1.0.0

Blueprint

No description

type Blueprint {
id: UUID!
type: BlueprintType!
owner: BlueprintOwner
isOfficial: Boolean
projectCount: Int!
enabled: Boolean
configuration(
revisionId: UUID
sequenceId: Int
): BlueprintConfiguration!
configurationRevisions(
page: PageInput
): BlueprintConfigurationConnection!
}

Fields

Blueprint.id ● UUID! non-null scalar

Blueprint.type ● BlueprintType! non-null enum

Blueprint.owner ● BlueprintOwner object

Blueprint.isOfficial ● Boolean scalar

Whether this blueprint is officially supported.

Blueprint.projectCount ● Int! non-null scalar

The number of projects using this blueprint.

Blueprint.enabled ● Boolean scalar

Whether this blueprint is enabled for your team. Does not affect existing projects.

Blueprint.configuration ● BlueprintConfiguration! non-null object

Query the revision history of this blueprint.

Blueprint.configuration.revisionId ● UUID scalar
Blueprint.configuration.sequenceId ● Int scalar

Blueprint.configurationRevisions ● BlueprintConfigurationConnection! non-null object

Blueprint.configurationRevisions.page ● PageInput input

Returned by

blueprint query ● configureMarketplaceBlueprintForTeam mutation ● createBlueprint mutation ● getOrCreateBlueprintFromMetadata mutation ● updateBlueprint mutation

Member of

BlueprintConnection object ● BlueprintsMarketplace object ● Project object ● Team object