WrenAI icon indicating copy to clipboard operation
WrenAI copied to clipboard

[DRAFT] Chore: integrate with ibis server

Open onlyjackfrost opened this issue 9 months ago • 0 comments

Integrate with Wren-engine Ibis server image

Preview API

schema

previewSql(data: PreviewSQLDataInput): JSON!

input PreviewSQLDataInput {
    sql: String!
    projectId: Int!
    limit: Int
  }

Get Manifest API

field mdl is base64 encoded manifest JSON string

schema

getMDL(data: GetMDLInput): GetMDLResult!

input GetMDLInput {
    hash: String!
  }

type GetMDLResult {
    hash: String!
    mdl: String
  }

onlyjackfrost avatar May 23 '24 09:05 onlyjackfrost