(field gqlSchema.Field)
| 600 | } |
| 601 | |
| 602 | func (genc *graphQLEncoder) initChildAttrId(field gqlSchema.Field) { |
| 603 | for _, f := range field.SelectionSet() { |
| 604 | _ = genc.idForAttr(f.DgraphAlias()) |
| 605 | genc.initChildAttrId(f) |
| 606 | } |
| 607 | } |
| 608 | |
| 609 | func (genc *graphQLEncoder) processCustomFields(field gqlSchema.Field, n fastJsonNode) { |
| 610 | if field.HasCustomHTTPChild() { |
no test coverage detected