graphql-voyager icon indicating copy to clipboard operation
graphql-voyager copied to clipboard

graphql voyager does not have select root type

Open jhartum opened this issue 3 years ago • 1 comments

Hello! My graphql voyager does not displaying select root type I check the schema in a docker container and the schema is generated correctly, but I cant select mutation on graphql voyager

dockerfile

FROM node:alpine as builder
RUN npm install -g graphql-schema-utilities
ADD graphql-schema/ ./graphql-schema/
RUN graphql-schema-utilities -s "{./graphql-schema/**/*.graphql,./graphql-schema/users/*.graphql}" -o "/app/schema.graphql"

FROM graphql/voyager
COPY --from=builder /app/schema.graphql /app/schema.graphql

jhartum avatar Dec 09 '21 10:12 jhartum

image

jhartum avatar Dec 09 '21 10:12 jhartum