Posts
Members
Info
Allowing Playground to receive querystring params
Hey there! On some past projects we've been using graphiql as a GUI for testing our queries and mutations. Now we've switched into using the Apollo Playground instead. Although I'm loving it, I'm missing something that was really useful from graphiql, that was : being able to…
0
6
Why doesn't this query work with the codegen?
It throws a Syntax Error: Expected Name, found "}". If I don't use interpolation and paste getTheme directly into the query, it works fine - but I need the interpolation part for a more complex matter.
0
0
How to refresh local schema against apollo studio
• My schema has been updated via CI on apollo studio • New types are present • I can't add the types as they do not exist yet in my client code …
1
3
"client:download-schema schema.graphql" uses doc strings
How can I get the exported file to use standard SDL comments using the # sign? Currently it it uses """My Comment""". This break the intellij GraphQL plugin, and they don't want to add support for this triple quote comments as it's not in the graphql specification.
1
1
Apollo Studio not registering schema
I'm following the tutorial's instructions and my schema is not registering. Is Apollo Studio broken or is the tutorial wrong? https://www.apollographql.com/docs/tutorial/production/
0
0
How to use libraries like graphql-scalars with Managed Federation & do…
We can pass multiple localSchemaFile in apollo.config.js https://github.com/apollographql/apollo-tooling/pull/1489 But running service:* is throwing error Error: Unknown type: "DateTime".
0
0
·153d# Apollo Tooling
__typename is required but how to use it?
I read https://github.com/apollographql/apollo-tooling#why-is-the-typename-field-required and understand this gets generated from apollo codegen but I'm always getting TS errors like .. is missing the following properties from ... : __typename. I'm still learning Typescript and…
0
1
Generating Typescript types with custom scalars?
Hi, I'm new to Apollo, and I have tried to generate types for my queries but the schema is using custom scalars that end up being typed as any. I've read that you can provide types for these custom scalars, but I couldn't find how to provide them. Where will the types generator…
0
4
Generating Typescript types from custom scalars like Long and BigDecimal
I was given a schema.graphql file that I want to generate my Typescript from. I get this error when running apollo:codegen › Error: Error initializing Apollo GraphQL project "Unnamed Project": Error: Error in "Loading schema for Unnamed Project": Error: Unknown type: "Long". …
0
0