Smith Samuel

Results 13 comments of Smith Samuel

@posgarou I used this option plug Plug.Static, at: "/uploads", from: Path.expand('./uploads'), gzip: false This shows the images in the index page. But the problem is when I try to view...

Hi @richeterre This was how I managed to resolve my own install `apollo-client`, `apollo-cache-inmemory`, `apollo-link-context` and `apollo-link-http` then do this ```js import ApolloClient from 'apollo-client'; import { InMemoryCache } from...

@regalskr2006 Please were you able to resolve this?

Please what should be the `datatype` that will hold the value of `graphql.Time` in postgres? I am having this error `converting argument $3 type: unsupported type graphql.Time, a struct`

@aaahrens If I may ask, is this still in the making? I could do a PR if necessary.

@lpalmes Thanks for the example. First I did `go get .` and I ran with `go run main.go`. I got EOF as the output when I navigated to http://localhost:8080/graphql

@lpalmes I checked again and it is working perfectly fine. The issue was my poor internet connection. Thanks so much. With time you must consider how to handle uploading of...

@pavelnikolov Please do we have any update on this?

Instead of using `leftJoinAndMapOne`, you can try `addSelect`. Recently, I had struggle getting the query below to work ``` this.bikeRepository .createQueryBuilder(this.bikeAlias) .select() .leftJoinAndMapOne( `${this.bikeAlias}.rate`, (subQuery) => { return subQuery .select(['"bikeId"',...

@chornbe @kytwb @callmekatootie Please what is the state of this issue? Where you able to resolve this in anyway? I am having the same issue. ```js Song.belongsToMany(models.Term, { through: models.SongCategory,...