> ## Documentation Index
> Fetch the complete documentation index at: https://evalgate.com/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Create repository intelligence traverse

> Requires scopes: eval:read



## OpenAPI

````yaml /api-reference/openapi.json post /api/repository-intelligence/repositories/{repositoryId}/graph/traverse
openapi: 3.1.0
info:
  title: EvalGate API
  version: 3.7.6
  description: EvalGate API. See docs/api-contract.md for stability commitments.
servers:
  - url: https://evalgate.com
    description: Production
  - url: http://localhost:3000
    description: Local
security: []
paths:
  /api/repository-intelligence/repositories/{repositoryId}/graph/traverse:
    post:
      tags:
        - repository intelligence
      summary: Create repository intelligence traverse
      description: 'Requires scopes: eval:read'
      operationId: post_repository_intelligence_repositories_repositoryId_graph_traverse
      parameters:
        - name: repositoryId
          in: path
          required: true
          schema:
            type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: >-
                #/components/schemas/PostApiRepositoryIntelligenceRepositoriesRepositoryIdGraphTraverseRequest
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                $ref: >-
                  #/components/schemas/PostApiRepositoryIntelligenceRepositoriesRepositoryIdGraphTraverseResponse200ApplicationJson
        '400':
          $ref: '#/components/responses/ValidationError'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '403':
          $ref: '#/components/responses/Forbidden'
        '404':
          $ref: '#/components/responses/NotFound'
        '409':
          $ref: '#/components/responses/Conflict'
        '429':
          $ref: '#/components/responses/RateLimited'
        '500':
          $ref: '#/components/responses/InternalError'
      security:
        - bearerAuth:
            - eval:read
components:
  schemas:
    PostApiRepositoryIntelligenceRepositoriesRepositoryIdGraphTraverseRequest:
      type: object
      properties:
        direction:
          oneOf:
            - type: string
              enum:
                - outbound
            - type: string
              enum:
                - inbound
            - type: string
              enum:
                - both
        purpose:
          oneOf:
            - type: string
              enum:
                - impact
            - type: string
              enum:
                - objective
            - type: string
              enum:
                - release
            - type: string
              enum:
                - coverage
            - type: string
              enum:
                - inspect
        maxDepth:
          type: number
        startNodeIds:
          type: array
          items:
            type: string
        relations:
          type: array
          items:
            oneOf:
              - type: string
                enum:
                  - contains
              - type: string
                enum:
                  - verified_by
              - type: string
                enum:
                  - defines
              - type: string
                enum:
                  - imports
              - type: string
                enum:
                  - calls
              - type: string
                enum:
                  - invokes
              - type: string
                enum:
                  - routes_to
              - type: string
                enum:
                  - uses_model
              - type: string
                enum:
                  - uses_prompt
              - type: string
                enum:
                  - exposes_tool
              - type: string
                enum:
                  - connects_to
              - type: string
                enum:
                  - retrieves_from
              - type: string
                enum:
                  - indexes
              - type: string
                enum:
                  - embeds_with
              - type: string
                enum:
                  - reranks_with
              - type: string
                enum:
                  - reads_memory
              - type: string
                enum:
                  - writes_memory
              - type: string
                enum:
                  - guarded_by
              - type: string
                enum:
                  - authorized_by
              - type: string
                enum:
                  - evaluated_by
              - type: string
                enum:
                  - covered_by
              - type: string
                enum:
                  - gated_by
              - type: string
                enum:
                  - monitored_by
              - type: string
                enum:
                  - deploys_to
              - type: string
                enum:
                  - owned_by
              - type: string
                enum:
                  - affects
              - type: string
                enum:
                  - satisfies
              - type: string
                enum:
                  - lacks_coverage_for
              - type: string
                enum:
                  - derived_from
              - type: string
                enum:
                  - changed_by
              - type: string
                enum:
                  - failed_in
              - type: string
                enum:
                  - repaired_by
              - type: string
                enum:
                  - published_as
              - type: string
                enum:
                  - supersedes
        maxNodes:
          type: number
        maxEdges:
          type: number
        headSha:
          type: string
        graphVersionId:
          type: string
        stopNodeTypes:
          type: array
          items:
            oneOf:
              - type: string
                enum:
                  - policy
              - type: string
                enum:
                  - owner
              - type: string
                enum:
                  - prompt
              - type: string
                enum:
                  - model_binding
              - type: string
                enum:
                  - workflow
              - type: string
                enum:
                  - dataset
              - type: string
                enum:
                  - guardrail
              - type: string
                enum:
                  - evaluator
              - type: string
                enum:
                  - agent
              - type: string
                enum:
                  - runtime
              - type: string
                enum:
                  - baseline
              - type: string
                enum:
                  - tool
              - type: string
                enum:
                  - repository
              - type: string
                enum:
                  - repository_snapshot
              - type: string
                enum:
                  - workspace
              - type: string
                enum:
                  - package
              - type: string
                enum:
                  - source_file
              - type: string
                enum:
                  - code_symbol
              - type: string
                enum:
                  - ai_system
              - type: string
                enum:
                  - business_objective_candidate
              - type: string
                enum:
                  - business_objective
              - type: string
                enum:
                  - requirement
              - type: string
                enum:
                  - model_provider
              - type: string
                enum:
                  - model_route
              - type: string
                enum:
                  - mcp_server
              - type: string
                enum:
                  - connector
              - type: string
                enum:
                  - retrieval_pipeline
              - type: string
                enum:
                  - corpus
              - type: string
                enum:
                  - index
              - type: string
                enum:
                  - embedding_model
              - type: string
                enum:
                  - reranker
              - type: string
                enum:
                  - memory_store
              - type: string
                enum:
                  - memory_policy
              - type: string
                enum:
                  - permission_boundary
              - type: string
                enum:
                  - eval_suite
              - type: string
                enum:
                  - test_case
              - type: string
                enum:
                  - ci_workflow
              - type: string
                enum:
                  - release_artifact
              - type: string
                enum:
                  - deployment_target
              - type: string
                enum:
                  - trace_stream
              - type: string
                enum:
                  - production_monitor
              - type: string
                enum:
                  - risk
              - type: string
                enum:
                  - coverage_gap
              - type: string
                enum:
                  - pull_request
              - type: string
                enum:
                  - change_set
      additionalProperties: false
      required:
        - direction
        - purpose
        - maxDepth
        - startNodeIds
        - relations
        - maxNodes
        - maxEdges
    PostApiRepositoryIntelligenceRepositoriesRepositoryIdGraphTraverseResponse200ApplicationJson:
      type: object
      properties:
        queryHash:
          type: string
        completeness:
          oneOf:
            - type: string
              enum:
                - complete
            - type: string
              enum:
                - blocked
            - type: string
              enum:
                - partial
        nodeIds:
          type: array
          items:
            type: string
        edgeIds:
          type: array
          items:
            type: string
        paths:
          type: array
          items:
            type: object
            properties:
              reasonCodes:
                type: array
                items:
                  type: string
              nodeIds:
                type: array
                items:
                  type: string
              edgeIds:
                type: array
                items:
                  type: string
            additionalProperties: false
            required:
              - reasonCodes
              - nodeIds
              - edgeIds
        truncationReasonCodes:
          type: array
          items:
            type: string
        graphVersionId:
          type: string
      additionalProperties: false
      required:
        - queryHash
        - completeness
        - nodeIds
        - edgeIds
        - paths
        - truncationReasonCodes
        - graphVersionId
    ApiError:
      type: object
      properties:
        error:
          type: object
          properties:
            code:
              type: string
              enum:
                - UNAUTHORIZED
                - FORBIDDEN
                - NOT_FOUND
                - VALIDATION_ERROR
                - RATE_LIMITED
                - CONFLICT
                - INTERNAL_ERROR
                - SERVICE_UNAVAILABLE
                - QUOTA_EXCEEDED
                - NO_ORG_MEMBERSHIP
                - CROSS_ORG_REFERENCE
                - INCOMPLETE
                - MALFORMED
            message:
              type: string
            details: {}
            requestId:
              type: string
              format: uuid
          required:
            - code
            - message
      required:
        - error
  responses:
    ValidationError:
      description: Validation error
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ApiError'
    Unauthorized:
      description: Unauthorized
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ApiError'
    Forbidden:
      description: Forbidden
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ApiError'
    NotFound:
      description: Resource not found
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ApiError'
    Conflict:
      description: Conflict
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ApiError'
    RateLimited:
      description: Rate limit exceeded
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ApiError'
    InternalError:
      description: Internal server error
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ApiError'
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: API Key or Session Token

````