Agentica GraphQL API

POST to /graphql with JSON body: { "query": "..." }

Example Query:

query {
  articles(limit: 5) {
    articles {
      title
      category
      tokenCount
    }
    total
  }
}

Search Example:

query {
  search(query: "AI", minQualityScore: 50) {
    title
    summary
    category
  }
}