From 72afd8c3070c71ea782378ea01af2b9b6a28c757 Mon Sep 17 00:00:00 2001 From: "Michelle (butterkitty)" Date: Wed, 21 Jun 2023 12:05:36 -0400 Subject: [PATCH 1/3] Fixed typo --- pages/apis/graphql/graphql_cookbook.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/apis/graphql/graphql_cookbook.md b/pages/apis/graphql/graphql_cookbook.md index 803bced0a83..437bf3d5b12 100644 --- a/pages/apis/graphql/graphql_cookbook.md +++ b/pages/apis/graphql/graphql_cookbook.md @@ -105,7 +105,7 @@ query GetPipelineUUID { ### Get a pipeline's information -You can get specific pipeline information for each of your pipeline. You can retrieve information for each build, jobs, and any other information listed on [this](https://buildkite.com/docs/apis/graphql/schemas/object/pipeline) page. +You can get more specific pipeline information for each of your pipelines. You can retrieve information for each build, jobs, and any other information listed on [this](https://buildkite.com/docs/apis/graphql/schemas/object/pipeline) page. ```graphql query GetPipelineInfo { From 909a7070db6eb7c3d767a15fc593e8ef38a0a41d Mon Sep 17 00:00:00 2001 From: Michelle Date: Wed, 19 Jul 2023 10:30:04 -0400 Subject: [PATCH 2/3] Update pages/apis/graphql/graphql_cookbook.md Co-authored-by: Michael Belton <119824349+mbelton-buildkite@users.noreply.github.com> --- pages/apis/graphql/graphql_cookbook.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/pages/apis/graphql/graphql_cookbook.md b/pages/apis/graphql/graphql_cookbook.md index 437bf3d5b12..e5d9a953def 100644 --- a/pages/apis/graphql/graphql_cookbook.md +++ b/pages/apis/graphql/graphql_cookbook.md @@ -84,9 +84,7 @@ query RecentPipelineSlugs { ### Get a pipeline's UUID -Get a pipeline's UUID by searching for it in the API. Search term can match a pipeline slug. - -_Note: Pipeline slugs are modifiable and can change_ +While a pipeline's name and slug can change over time, its UUID is permanent. Use the UUID when you need a way to reference a pipeline that won't change. ```graphql query GetPipelineUUID { From 06821af5d2545a917ad655eda83033f87d8f1e5d Mon Sep 17 00:00:00 2001 From: "Michelle (butterkitty)" Date: Fri, 21 Jul 2023 10:01:34 -0400 Subject: [PATCH 3/3] Update graphql uuid language as per PR --- pages/apis/graphql/graphql_cookbook.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/apis/graphql/graphql_cookbook.md b/pages/apis/graphql/graphql_cookbook.md index e5d9a953def..56cd79c20fc 100644 --- a/pages/apis/graphql/graphql_cookbook.md +++ b/pages/apis/graphql/graphql_cookbook.md @@ -82,7 +82,7 @@ query RecentPipelineSlugs { } ``` -### Get a pipeline's UUID +### Get a pipeline's persistent UUID While a pipeline's name and slug can change over time, its UUID is permanent. Use the UUID when you need a way to reference a pipeline that won't change.