all input types & enums are generated when specifying -c --skip-schema
See original GitHub issueI think the input
should also be omitted when specifying the skip schema parameter ? 😃
input MyQueryInput {
...
}
Issue Analytics
- State:
- Created 5 years ago
- Comments:7 (5 by maintainers)
Top Results From Across the Web
Enumeration types - C# reference - Microsoft Learn
An enumeration type (or enum type) is a value type defined by a set of named constants of the underlying integral numeric type....
Read more >Enums - Swagger
You can use the enum keyword to specify possible values of a request parameter or a model ... All values in an enum...
Read more >Enumerated Types or Enums in C++ - GeeksforGeeks
Enumerated type (enumeration) is a user-defined data type which can be assigned some limited values. These values are defined by the ...
Read more >Specifying size of enum type in C - Stack Overflow
When the enum value is passed to a function, will it be passed as an int-sized value regardless? Many (most) compilers these days...
Read more >Enum Types - Java™ Tutorials
In the Java programming language, you define an enum type by using the ... and data sets where you know all possible values...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
@FredyC We can’t predict the usage of the generated code, but we can minimize the amount of generated output. Any chance you can provide an example for it? @FredyC
@dotansimha I don’t understand why unused input types are needed on client side, especially for the clients which do not use them?