If I don’t specify a predicate as a list in schema file, and just describe it with multiple objects in nq file, can bulk loader automatically load it as a array? Eg:
entity.rdf:
<0x01> alias “alias1”
<0x01> alias “alias2”
<0x01> name “name”
<0x01> uid “myid”
schema.rdf:
uid: string @index(exact)
name: string @index(exact)
It seems not working. Is there anyway to support it because I have thousands predicates and just want to specify severals in schema file instead enumerating all, the rest can be loaded as string or string list.