Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有办法使用 dgo 客户端检索 dgraph 模式?
我想要做的是将我现有的模式与服务器上的模式进行比较,以避免重新发送它,因为每次发送已设置的模式时它都会触发重新索引。
实际上可以检索有关整个模式的信息:
txn := client.NewTxn() res, err := txn.Query(ctx, `schema{}`) if err != nil { return err } for _, predicate := range res.GetSchema() { log.Printf("predicate: %#v ", predicate) }