MCPcopy Create free account
hub / github.com/dgraph-io/dgraph / writeFilterArguments

Function writeFilterArguments

graphql/dgraph/graphquery.go:180–187  ·  view source on GitHub ↗
(b *strings.Builder, args []dql.Arg)

Source from the content-addressed store, hash-verified

178}
179
180func writeFilterArguments(b *strings.Builder, args []dql.Arg) {
181 for i, arg := range args {
182 if i != 0 {
183 x.Check2(b.WriteString(", "))
184 }
185 x.Check2(b.WriteString(arg.Value))
186 }
187}
188
189func writeFilterFunction(b *strings.Builder, f *dql.Function) {
190 if f == nil {

Callers 2

writeRootFunction · 0.85
writeFilterFunctionFunction · 0.85

Calls 1

Check2Function · 0.92

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…