type Business implements NamedEntity & ValuedEntity {
name: String
value: Int
employeeCount: Int
}
I do think we can use & instead of , here, so we can simply print schema to a file rather than fetching it through graphql get-schema in JavaScript world.
I compare both of them which was generated in my project and find the only difference, even better with descriptions.
Thanks!
https://github.com/graphql-python/graphql-core/blame/master/graphql/utils/schema_printer.py#L132
https://facebook.github.io/graphql/draft/#sec-Interfaces
I do think we can use
&
instead of,
here, so we can simply print schema to a file rather than fetching it through graphql get-schema in JavaScript world. I compare both of them which was generated in my project and find the only difference, even better with descriptions. Thanks!