This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// post a description of the object we want using graphql, this | |
// is then looped over and then each node that is registered checks | |
// and returns a json copy of the requested fields | |
package main | |
import ( | |
"errors" | |
"log" | |
"reflect" | |
"sevki.org/graphql/parse" |