MCPcopy
hub / github.com/dgraph-io/dgraph / parseSubject

Function parseSubject

edgraph/server.go:2533–2539  ·  view source on GitHub ↗
(predSubject string)

Source from the content-addressed store, hash-verified

2531}
2532
2533func parseSubject(predSubject string) (uint64, error) {
2534 if strings.HasPrefix(predSubject, "_:") {
2535 return 0, nil // blank node
2536 } else {
2537 return dql.ParseUid(predSubject)
2538 }
2539}

Callers 2

verifyUniqueFunction · 0.85
isSwapFunction · 0.85

Calls 1

ParseUidFunction · 0.92

Tested by

no test coverage detected