Skip to content

Commit 578c2f6

Browse files
authored
feat: make schema version pagination arguments public (#6806)
1 parent 9e43baa commit 578c2f6

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

packages/services/api/src/modules/schema/module.graphql.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,10 @@ export default gql`
178178
"""
179179
Paginated list of schema versions, ordered from recent to oldest.
180180
"""
181-
schemaVersions(first: Int, after: String): SchemaVersionConnection! @tag(name: "public")
181+
schemaVersions(
182+
first: Int @tag(name: "public")
183+
after: String @tag(name: "public")
184+
): SchemaVersionConnection! @tag(name: "public")
182185
"""
183186
Retreive a specific schema version in this target by it's id.
184187
"""

0 commit comments

Comments
 (0)