webix graphQL

how to integrate webix and GraphQL?

Hi,

Webix doesn’t have its own graphQL implementation, but you are free to use any third-part library. For example Apollo-Client.

const client = new ApolloClient();

webix.ui({
  view: datatable, 
  autoConfig:true,
  data: client.query({
    query: gql` query TodoApp {
        todos { id text completed }
     }`,
  })
}

awesome, check it out.
thankyou mister,.

Starting with version 5.4, Webix has support for GraphQL.