cqs 1.25.0

Code intelligence and RAG for AI agents. Semantic search, call graphs, impact analysis, type dependencies, and smart context assembly — in single tool calls. 54 languages + L5X/L5K PLC exports, 91.2% Recall@1 (BGE-large), 0.951 MRR (296 queries). Local ML, GPU-accelerated.
Documentation
"""
A user in the system.
"""
type User {
  id: ID!
  name: String!
  email: String!
  posts: [Post!]!
  address: Address
}

type Post {
  id: ID!
  title: String!
  body: String!
  author: User!
}

input CreateUserInput {
  name: String!
  email: String!
}

interface Node {
  id: ID!
}

enum Status {
  ACTIVE
  INACTIVE
  SUSPENDED
}

union SearchResult = User | Post

scalar DateTime

directive @auth(requires: Role!) on FIELD_DEFINITION

query GetUser($id: ID!) {
  user(id: $id) {
    name
    email
    posts {
      title
    }
  }
}

fragment UserFields on User {
  name
  email
  address {
    city
  }
}