Schema with multiple files
See original GitHub issueIn my case, my schema is separeted in multiple files as the image below
Currently is possible generate a markdown when have a case like mine? I tried add multiple files as parameter, but I got error.
The solution in my case was transfer content of all the files to schema.graphql
and use the graphql-markdown
to generate a file.md
.
My suggestion is create a possibility to this case when have a schema splited in multiple files. Make sense? It’s possible?
Issue Analytics
- State:
- Created 2 years ago
- Comments:5
Top Results From Across the Web
Dealing With Multiple XML Schema Files - xFront
It is not okay to make multiple copies of a schema file and have multiple schemas reuse the multiple copies. D.xsd is placed...
Read more >How to ingest multiple files with various schema using a single ...
How to ingest multiple files with various schema using a single Azure data Factory Copy Activity through Parametrized Datasets and Mappings.
Read more >Multiple Schema File Syntax - Jade Software
For details about selecting multiple files to load into a JADE database, specifying the order in which the files are loaded, and then...
Read more >Multi Schema Files Parsing in Talend - YouTube
My Complete Talend Course on Udemy: https://www.udemy.com/course/talend-d... … Show more. Show more. Chapters. View all ...
Read more >Support for splitting Prisma schema into multiple files #2377
Prisma currently only supports one single Prisma Schema file. Developers want more flexibility for managing their Prisma Schema files.
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 Free
Top 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
I joined all .graphql files programmatically using some extra libs. And then attached it to a git hook
@wagnerlduarte @GabrielBarross not really, but
might work if your system is linux or mac (has
/dev/stdin
). Basically, you’re limited to a single file given howgraphql-markdown
parses its arguments. This example combines your files and pipes the resulting output tographql-markdown
passing indev./stdin
as the file (which represents the piped input).