graphql

sparkofreason 2023-02-24T22:10:40.449399Z

Does lacinia have implement the inverse of parse-schema? A function which takes the lacinia EDN schema definition and outputs an SDL string?

thom 2023-02-25T07:58:37.166159Z

Perhaps not what you’re after, but in the general case, you can always get the schema from a GraphQL endpoint itself using introspection queries. https://stackoverflow.com/questions/37397886/get-graphql-whole-schema-query

👍🏼 1
sparkofreason 2023-02-25T12:48:46.819219Z

Thanks, that covers it.