(gq *GraphQuery)
| 2811 | } |
| 2812 | |
| 2813 | func isEmpty(gq *GraphQuery) bool { |
| 2814 | return gq.Func == nil && len(gq.NeedsVar) == 0 && len(gq.Args) == 0 && |
| 2815 | gq.ShortestPathArgs.From == nil && gq.ShortestPathArgs.To == nil |
| 2816 | } |
| 2817 | |
| 2818 | // getRoot gets the root graph query object after parsing the args. |
| 2819 | func getRoot(it *lex.ItemIterator) (gq *GraphQuery, rerr error) { |
no outgoing calls
no test coverage detected