We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
ProjectType
1 parent 3ccd2c3 commit e1b93b8Copy full SHA for e1b93b8
packages/services/api/src/modules/project/module.graphql.ts
@@ -76,9 +76,9 @@ export default gql`
76
}
77
78
enum ProjectType {
79
- FEDERATION
80
- STITCHING
81
- SINGLE
+ FEDERATION @tag(name: "public")
+ STITCHING @tag(name: "public")
+ SINGLE @tag(name: "public")
82
83
84
extend type Organization {
@@ -97,7 +97,7 @@ export default gql`
97
slug: String! @tag(name: "public")
98
cleanId: ID! @deprecated(reason: "Use the 'slug' field instead.")
99
name: String! @deprecated(reason: "Use the 'slug' field instead.")
100
- type: ProjectType!
+ type: ProjectType! @tag(name: "public")
101
buildUrl: String
102
validationUrl: String
103
experimental_nativeCompositionPerTarget: Boolean!
0 commit comments