A feature that exists only in Bulkloader. It takes the XID or blank node and saves it to the same node as a property of it with the predicate name as “xid”. e.g.:
<_:MichelDiz> <name> "Michel" .
It will be recorded as
{
"data": {
"q": [
{
"name": "Michel",
"xid": "_:MichelDiz"
}
]
}
Observation: One thing I noticed in recent tests is that store_xids stores only real XIDs. I think It should store any kind of value except UIDs in fact. So my example in this issue is slightly wrong. Cuz I’m exemplifying with a blank node <_:MichelDiz> not a XID.