Skip to content

Commit e1b93b8

Browse files
authored
feat(server): add ProjectType to the public API (#6709)
1 parent 3ccd2c3 commit e1b93b8

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -76,9 +76,9 @@ export default gql`
7676
}
7777
7878
enum ProjectType {
79-
FEDERATION
80-
STITCHING
81-
SINGLE
79+
FEDERATION @tag(name: "public")
80+
STITCHING @tag(name: "public")
81+
SINGLE @tag(name: "public")
8282
}
8383
8484
extend type Organization {
@@ -97,7 +97,7 @@ export default gql`
9797
slug: String! @tag(name: "public")
9898
cleanId: ID! @deprecated(reason: "Use the 'slug' field instead.")
9999
name: String! @deprecated(reason: "Use the 'slug' field instead.")
100-
type: ProjectType!
100+
type: ProjectType! @tag(name: "public")
101101
buildUrl: String
102102
validationUrl: String
103103
experimental_nativeCompositionPerTarget: Boolean!

0 commit comments

Comments
 (0)