Skip to content

Latest commit

 

History

History
34 lines (29 loc) · 6.74 KB

File metadata and controls

34 lines (29 loc) · 6.74 KB

QueryTracesProjectsProjectIdTracesSearchPostRequest

Example Usage

import { QueryTracesProjectsProjectIdTracesSearchPostRequest } from "galileo-generated/models/operations";

let value: QueryTracesProjectsProjectIdTracesSearchPostRequest = {
  projectId: "<value>",
  body: {
    logStreamId: "00000000-0000-0000-0000-000000000000",
    filters: [
      {
        columnId: "<id>",
        operator: "eq",
        value: "example input",
        caseSensitive: true,
        type: "text",
      },
    ],
    sort: {
      columnId: "<id>",
      ascending: false,
    },
  },
};

Fields

Field Type Required Description Example
projectId string ✔️ N/A
body models.LogRecordsQueryRequest ✔️ N/A {
"filters": [
{
"case_sensitive": true,
"name": "input",
"operator": "eq",
"type": "text",
"value": "example input"
}
],
"log_stream_id": "00000000-0000-0000-0000-000000000000",
"pagination": {
"limit": 5,
"starting_token": 0
},
"sort": {
"ascending": false,
"name": "updated_at",
"sort_type": "column"
}
}