During Graph in Space streaming, I was told by several members of Dgraph that Slash also accepts GraphQL± syntax, but when I try to paste my “init DB” script, it doesn’t work:
type Asset {
a_acquired
<~a_reminders>
...
a_created_at
}
type Money {
o_amount
o_currency
}
...
<a_acquired>: datetime @index(day) .
<a_reminders>: [uid] @reverse .
...
<a_created_at>: datetime @index(day) .
<o_amount>: int @index(int) .
<o_currency>: string @index(exact) .
...
How do I make it happen without changing my schema? It’s always been working for the on-prem version (Dgraph 1.x and 20.x).