Fix Relay generating null query text for mutations
Relay v20 treats extend type in server schema as client extensions, causing all mutation fields to have "text": null in generated artifacts. Replace the cat-based schema concatenation with a merge script that collects all extend type Mutation blocks and produces a single type Mutation definition. The split graphql/ files remain the source of truth for gqlgen; the merged schema.graphql is generated for Relay. Signed-off-by: Émile Ré <emile@getprobo.com>
This commit is contained in:
23
GNUmakefile
23
GNUmakefile
@@ -218,10 +218,30 @@ bin/probod-bootstrap:
|
||||
@probo/emails:
|
||||
$(NPM) --workspace $@ run build
|
||||
|
||||
RELAY_SCHEMAS = \
|
||||
pkg/server/api/connect/v1/schema.graphql \
|
||||
pkg/server/api/console/v1/schema.graphql \
|
||||
pkg/server/api/trust/v1/schema.graphql
|
||||
|
||||
.PHONY: relay
|
||||
relay:
|
||||
relay: $(RELAY_SCHEMAS)
|
||||
$(NPM) run relay
|
||||
|
||||
MERGE_GRAPHQL = contrib/merge-graphql-schema.sh
|
||||
|
||||
CONNECT_GQL = $(wildcard pkg/server/api/connect/v1/graphql/*.graphql)
|
||||
CONSOLE_GQL = $(wildcard pkg/server/api/console/v1/graphql/*.graphql)
|
||||
TRUST_GQL = $(wildcard pkg/server/api/trust/v1/graphql/*.graphql)
|
||||
|
||||
pkg/server/api/connect/v1/schema.graphql: $(CONNECT_GQL)
|
||||
$(MERGE_GRAPHQL) $@ pkg/server/api/connect/v1/graphql
|
||||
|
||||
pkg/server/api/console/v1/schema.graphql: $(CONSOLE_GQL)
|
||||
$(MERGE_GRAPHQL) $@ pkg/server/api/console/v1/graphql
|
||||
|
||||
pkg/server/api/trust/v1/schema.graphql: $(TRUST_GQL)
|
||||
$(MERGE_GRAPHQL) $@ pkg/server/api/trust/v1/graphql
|
||||
|
||||
.PHONY: @probo/console
|
||||
@probo/console: NODE_ENV=production
|
||||
@probo/console: relay
|
||||
@@ -290,6 +310,7 @@ clean: ## Clean the project (node_modules and build artifacts)
|
||||
$(RM) -f pkg/server/api/console/v1/schema/schema.go pkg/server/api/console/v1/types/types.go
|
||||
$(RM) -f pkg/server/api/trust/v1/schema/schema.go pkg/server/api/trust/v1/types/types.go
|
||||
$(RM) -f pkg/server/api/mcp/v1/server/server.go pkg/server/api/mcp/v1/types/types.go
|
||||
$(RM) -f $(RELAY_SCHEMAS)
|
||||
$(RM) -f pkg/llm/registry_gen.go
|
||||
find apps -type d -name __generated__ -exec $(RM) -rf {} +
|
||||
|
||||
|
||||
Reference in New Issue
Block a user