action lgtm_get_query_job_results_for_project { label: "Fetch the results of a query job for a specific project" description: "Fetch the results for a specific project. The endpoint succeeds only if the query was successful, and returns a `404` error otherwise. By default, the endpoint provides only results that are within the source tree. To obtain all results, specify the `nofilter` parameter.\n" provider: lgtm method: GET path: "/queryjobs/{queryjob-id}/results/{project-id}" encoding: json input: { type: "object" properties: { limit: { type: "integer" format: "int32" } nofilter: { type: "boolean" } "project-id": { type: "string" } "queryjob-id": { type: "string" } start: { type: "integer" format: "int32" } } required: ["project-id", "queryjob-id"] additionalProperties: false } output: { type: "object" properties: { columns: { type: "array" description: "Columns returned by the query." items: { type: "string" } } data: { type: "array" description: "Results of the query divided by row." items: { type: "array" items: { type: "object" properties: { file: { type: "string" } line: { type: "integer" format: "int32" } url: { type: "string" format: "uri" } value: { type: "string" } } } } } next: { type: "string" description: "URL for retrieving the next part of the results (if applicable)." } project: { type: "object" properties: { id: { type: "integer" format: "int64" description: "The numeric identifier of the project." } name: { type: "string" description: "The display name of the project." } url: { type: "string" description: "The full URL of the project on LGTM." } "url-identifier": { type: "string" description: "The URL identifier of the project." } } } } } }