Query
query SkillGroup($id: ID!) {
skillGroup(id: $id) {
id
name
skills {
id
name
description
syncGlobally
packageHash
files {
id
path
contentsBase64
executable
contentHash
createdAt
}
}
repositories {
id
canonicalOrigin
displayOrigin
name
description
jiraBranchRegex
}
createdAt
updatedAt
}
}Variables
{
"id": "id"
}Response
{
"data": {
"skillGroup": {
"id": "id",
"name": "string",
"skills": [
{
"id": "id",
"name": "string",
"description": "string",
"syncGlobally": true,
"packageHash": "string",
"files": [
{
"id": "id",
"path": "string",
"contentsBase64": "string",
"executable": true,
"contentHash": "string",
"createdAt": "string"
}
]
}
],
"repositories": [
{
"id": "id",
"canonicalOrigin": "string",
"displayOrigin": "string",
"name": "string",
"description": "string",
"jiraBranchRegex": "string"
}
],
"createdAt": "string",
"updatedAt": "string"
}
}
}Queries
skillGroup
Returns one skill group with its assignments.
QUERY
skillGroup(id: ID!): SkillGroupArguments
id
ID!
required
Stable identifier of this resource.
Returns
id
ID!
Stable identifier for this skill group.
name
String!
Display name of this skill group.
skills
[Skill!]!
Skills associated with this skill group.
repositories
Repositories associated with this skill group.
createdAt
String!
ISO 8601 timestamp when this skill group was created.
updatedAt
String!
ISO 8601 timestamp when this skill group was last updated.
Query
query SkillGroup($id: ID!) {
skillGroup(id: $id) {
id
name
skills {
id
name
description
syncGlobally
packageHash
files {
id
path
contentsBase64
executable
contentHash
createdAt
}
}
repositories {
id
canonicalOrigin
displayOrigin
name
description
jiraBranchRegex
}
createdAt
updatedAt
}
}Variables
{
"id": "id"
}Response
{
"data": {
"skillGroup": {
"id": "id",
"name": "string",
"skills": [
{
"id": "id",
"name": "string",
"description": "string",
"syncGlobally": true,
"packageHash": "string",
"files": [
{
"id": "id",
"path": "string",
"contentsBase64": "string",
"executable": true,
"contentHash": "string",
"createdAt": "string"
}
]
}
],
"repositories": [
{
"id": "id",
"canonicalOrigin": "string",
"displayOrigin": "string",
"name": "string",
"description": "string",
"jiraBranchRegex": "string"
}
],
"createdAt": "string",
"updatedAt": "string"
}
}
}