I'm currently working on an Apache-age graph and need to retrieve the OID values for the label relations in the graph. I'm using Postgres to manage my database and have tried querying the ag_labels schema, but it doesn't seem to contain the OID values for the label relations.
Here's the code I've tried so far:
SELECT oid, relname FROM pg_class WHERE relkind = 'r' AND relname LIKE 'ag_labels_%';
This query returns the relname values for all label relations in my graph, but not the OID values.
I've also tried querying the pg_catalog.pg_class table directly, but this doesn't seem to return the OID values for the label relations either.
I'm wondering if there's another table or schema I should be looking at to retrieve the OID values for label relations in Apache-age. Any suggestions or insights would be greatly appreciated.
Thanks in advance!