Hi,
I’m trying to build a schema using the GQL schema definition but I discovered that the @facets are still not supported.
Overcoming my disappointment I went into the DQL schema definition trying to do my best to complete the task of defining a minimal schema for my relations.
Here I discovered 2 major problems that are preventing me to go on:
- the schema definition in DQL is shipping also old definitions, the database is empty but the old definitions are still there even if I deleted all an recreated the schema.
Example: here you could see the Actual.pointed_by and Actual.pointedBy which are boot coming from a very early stage of my schema definition. How this could be possible? Is this intentional?
...
Actual.config: string @index(fulltext, trigram) .
Actual.pointedBy: [uid] .
Actual.pointed_by: [uid] .
Group.contains: [uid] .
...
- Then I decided to use pure DQL to overcome synch and limitations but I’m noticing that even if the Query manual for DQL is quite rich (but doesn’t looks like a formal manual and this is slowing down our training phase) I haven’t been able to find how to define the facets for an edge which is one of the most important features of any GraphDB.
Could someone help?