I have a bucket setup named api that has documents in it with a field name api.
I’m wondering if it’s at all possible to create an index for this field?
I tried
CREATE INDEX api_index ON api(api)
But alas, it ended up creating an index api(self) which is not the desired effect…
Any way to do this?