List of `bool `

That’s right lol!

In our case, we are using facets and, for example, two or more edges could point to the same “false” value but with different facet values.

For example, imagine I want to persist this JSON object:

{
    "myList": [true, true, false, true, false ]
}

I was thinking about using:

schema:
myList: [bool] .

nquads:
_:tom <myList> "true" (index="0") .
_:tom <myList> "true" (index="1") .
_:tom <myList> "false" (index="2") .
_:tom <myList> "true" (index="3") .
_:tom <myList> "false" (index="4") .