Maxim Shiryaev

Results 6 comments of Maxim Shiryaev

> Any update about this ? Have some: ``` // firebird-async.ts import * as Firebird from "node-firebird"; import promisify = require("../node_modules/util.promisify") const fbOptions: Firebird.Options = { host: process.env.DB_HOST, port: process.env.DB_PORT,...

I can guess that LIST() returns a CLOB. So the recepie is the same as in the "READING BLOBS (ASYNCHRONOUS)" section of the readme.md

Nothing wrong with `[disabledItems]`. It's just more convenient in my case to have all the data in one collection instead of two. And I suppose that in many cases disabled...

The `"result.data.posts - Object is of type "Unknown".ts(2571)"` is OK since you do not use typed form of a query. See [graphql-code-gen](https://www.graphql-code-generator.com/docs/guides/angular) on how to add strong typing to graphql...

Show the value of `result.data.posts`. May be you just get wrong data from backend. Or you could use any GraphQL dev tool like graphiql to examine query results yourself.

Possible solution is [here at stackblitz](https://stackblitz.com/edit/ionic-5-sequential-toasts)