Jasper Blues
Jasper Blues
I started something here: https://github.com/jasperblues/xcode-gradle . . . but haven't had time to continue. Most importantly, there needs to be an easy way to produce test coverage reports that can...
This looks super cool, but have you considered using the DAO pattern as an alternative to the ActiveRecord style approach? A Data Access Object (DAO) is an interface dedicated to...
Traditional analytics tools don't provide graph analytics. Helm would enable this. When enabled we could record paths taken by the user, then: * Identify common paths. If one exists already,...
Greetings! Is it possible to specify a different font for the placeholder? Would you like a PR for this? What should the API be?
Hey folks! If you've been using this community driver and would like to migrate onto Neo4j+bolt, please try [Drivine](https://drivine.org). By default results are returned in exactly the same format as...
It would be cool to support AgensGraph. For the most part the regular Postgres JDBC driver will work, except for returning some graph specific types like paths, which a visible...
``` @Service() export class OrganisationManager extends Object { constructor(@Inject("database") readonly db: BoltAdapter, @CypherQuery("organisationManager/get") readonly getQuery: string) ^--- Query is injected { super(); } public async list(): Promise { const result...
Only `instance(mock)` is ready for playback mode, otherwise `mock(Something)` is in record mode. This behavior is different to Mockito(Java) and OCMockito(ObjectiveC). Users familiar with these other libs might speed read...
According to [docs](https://node-postgres.com/features/types), there is no special treatment required for JSONB bind arguments. In practice there is: * When the argument is a single object, it is bound correctly *...
I have written a Neo4j client library that uses this driver under the hood. (https://drivine.org/). One of the use-cases is streaming without **back-pressure**. Back-pressure is where the source produces data...