Respect quad:"-" (blank) annotation in loader
Author: ermikCreated Jun 5, 2020Updated Jun 5, 2020
For a give quad-compatible struct:
type Person struct {
PasswordHash []byte `json:"-" quad:"-"`
}the loader.go logic will fail in checkFieldType as arrays are unsupported. Regardless of support status, fields marked as blank should be ignored when executing value load.
Source: cayleygraph/cayley