diff --git a/src/graphql/data/fpt/changelog.json b/src/graphql/data/fpt/changelog.json index ae24cf0eb6..1879fd41b8 100644 --- a/src/graphql/data/fpt/changelog.json +++ b/src/graphql/data/fpt/changelog.json @@ -1,4 +1,17 @@ [ + { + "schemaChanges": [ + { + "title": "The GraphQL schema includes these changes:", + "changes": [ + "

Argument query: String (with default value) added to field 'ProjectV2.items'

" + ] + } + ], + "previewChanges": [], + "upcomingChanges": [], + "date": "2025-10-22" + }, { "schemaChanges": [ { diff --git a/src/graphql/data/fpt/schema.docs.graphql b/src/graphql/data/fpt/schema.docs.graphql index abc6e5bd51..3ca2d51684 100644 --- a/src/graphql/data/fpt/schema.docs.graphql +++ b/src/graphql/data/fpt/schema.docs.graphql @@ -37388,6 +37388,11 @@ type ProjectV2 implements Closable & Node & Updatable { Ordering options for project v2 items returned from the connection """ orderBy: ProjectV2ItemOrder = {field: POSITION, direction: ASC} + + """ + Search query for filtering items + """ + query: String = "" ): ProjectV2ItemConnection! """ diff --git a/src/graphql/data/fpt/schema.json b/src/graphql/data/fpt/schema.json index 0b87813706..53b7509103 100644 --- a/src/graphql/data/fpt/schema.json +++ b/src/graphql/data/fpt/schema.json @@ -49821,6 +49821,17 @@ "kind": "input-objects", "href": "/graphql/reference/input-objects#projectv2itemorder" } + }, + { + "name": "query", + "defaultValue": "", + "description": "

Search query for filtering items.

", + "type": { + "name": "String", + "id": "string", + "kind": "scalars", + "href": "/graphql/reference/scalars#string" + } } ] }, diff --git a/src/graphql/data/ghec/schema.docs.graphql b/src/graphql/data/ghec/schema.docs.graphql index abc6e5bd51..3ca2d51684 100644 --- a/src/graphql/data/ghec/schema.docs.graphql +++ b/src/graphql/data/ghec/schema.docs.graphql @@ -37388,6 +37388,11 @@ type ProjectV2 implements Closable & Node & Updatable { Ordering options for project v2 items returned from the connection """ orderBy: ProjectV2ItemOrder = {field: POSITION, direction: ASC} + + """ + Search query for filtering items + """ + query: String = "" ): ProjectV2ItemConnection! """ diff --git a/src/graphql/data/ghec/schema.json b/src/graphql/data/ghec/schema.json index 0b87813706..53b7509103 100644 --- a/src/graphql/data/ghec/schema.json +++ b/src/graphql/data/ghec/schema.json @@ -49821,6 +49821,17 @@ "kind": "input-objects", "href": "/graphql/reference/input-objects#projectv2itemorder" } + }, + { + "name": "query", + "defaultValue": "", + "description": "

Search query for filtering items.

", + "type": { + "name": "String", + "id": "string", + "kind": "scalars", + "href": "/graphql/reference/scalars#string" + } } ] },