Ilya Sterin
Results
1
issues of
Ilya Sterin
``` import { schemaComposer } from "graphql-compose" schemaComposer.addTypeDefs(` type Post { id: Int! title: String votes: Int } enum Sort { ASC DESC } `); console.log(schemaComposer.buildSchema()) console.log(schemaComposer.toSDL()) ``` Both, buildSchema...