LINKS
What this covers: querying the LINKS entity (4 rows; label field SRC_FILE_ID).
Why you need it: list, fetch, count, and aggregate links; answer "which/how many/how much" questions.
Syntax:
LIST LINKS [WHERE ...] [ORDER BY <FIELD> [DESC]] [LIMIT n] [OFFSET n]GET LINKS "<src_file_id>"COUNT LINKS [BY <FIELD>] [WHERE ...]RESOLVE LINKS "<name>"- Operators: IS, IS_NOT, CONTAINS, GT, GTE, LT, LTE; combine with AND / OR.
Returns: JSON rows plus _meta (provenance, epoch, related follow-up queries, hints).
Workflows:
1. COUNT LINKS - size the data before listing.
2. RESOLVE LINKS "<fuzzy name>" then GET LINKS "<canonical>" - resolve before fetching when a name lookup misses.
Constraints:
- Filter only on fields listed in HELP SCHEMA; unknown fields are hard errors.
- Enum values are exact strings.
- Default LIMIT is 100;
countin a LIST response is not the true total.