relay-compiler-language-typescript icon indicating copy to clipboard operation
relay-compiler-language-typescript copied to clipboard

⛔️ Obsolete - A language plugin for Relay that adds TypeScript support, including emitting type definitions.

Results 51 relay-compiler-language-typescript issues
Sort by recently updated
recently updated
newest added

**Schema Types:** ```graphql type DiceRollCloseParenNode implements DiceRollDetail { content: String! } type DiceRollConstantNode implements DiceRollDetail { content: String! } interface DiceRollDetail { content: String! } type DiceRollDiceRollNode implements DiceRollDetail {...

Why do we have this? https://github.com/relay-tools/relay-compiler-language-typescript/blob/4134988f48d8522cc2403c2da748a428ddebeea5/src/TypeScriptGenerator.ts#L1061-L1063

question

Look at the commits for more details. Basically I have included some changes to support more accurate type output, especially regarding union types and type names. This should also fix...

enhancement

Our project has been successfully using `relay-compiler-language-typescript` _without_ a single artifact directory configured, which is our preference (having the types close to where they are used makes sense to me)....

I am trying to use `appendNode` directive on a field but I'm getting `Unknown directive @appendNode` error. Is this directive currently supported in typescript compiler? ```graphql mutation MessagesPanelUserChannelMutation( $input: CreateUserChannelInput!...

Sorry for my ignorance, I just started using Relay and friends. I chose it over other existing GraphQL client because IMHO, it is worth it in the long run. I...

I noticed that relay compiler says that the `--language` parameter is a `string`. Trying: `./node_modules/.bin/relay-compiler --src ./screens --schema ./graphql-relay/schema.graphql --language javascript --language typescript --watch` I get an error: ``` Error:...

Hello 👋! First contribution here ~and it's a decently large diff~ (edit: split the example app out to #307), so I figured it might be good to start with a...

Splitting this example TodoMVC app out from #305 to make that simpler to review

for example, a query which has a variable that is required contains a refetchable fragment, relay permit does not provide the variable for refetch, (it still provide value of the...