https://www.prisma.io/ logo
Join Slack
Powered by
# prisma-whats-new
  • y

    yus

    06/03/2017, 1:49 AM
    They use aws aurora which is a mysql postgres compatible cloud db. Check out the stack here https://www.graph.cool/docs/faq/graphcool-technology-ul6ue9gait/
    πŸ‘ 2
  • s

    sai

    06/03/2017, 2:49 AM
    Hi guys, Looking for front-end freelancer. We will be using https://github.com/apollographql/react-apollo. Thank you.
    n
    k
    • 3
    • 2
  • y

    yus

    06/03/2017, 5:22 AM
    @nilan the prewrite doco says data transformations are ignored, but the sample code adds actorCount property to the input data object. This seems to be inconsistent?
  • y

    yus

    06/03/2017, 5:24 AM
    The prewrite Step would be quite useless if it can't write to event.data
    n
    • 2
    • 3
  • k

    kudlajz

    06/03/2017, 8:31 AM
    Guys, what is the difference between Apollo Client and Relay? Which one should I use?
    n
    • 2
    • 4
  • y

    yus

    06/03/2017, 9:49 AM
    Apollo is very user friendly and very easy to start using straight away. Relay classic has more boilerplate and steeper learning curve. Relay modern is what I would recommend instead of relay if you want to go down that path. Its got performance improvements and improved usage so it's easier to adopt. Apollo is easier for first timers and has good support with graphcool. Ive used both, i would go with apollo.
    πŸ‘ 1
    k
    • 2
    • 6
  • n

    nikolasburk

    06/03/2017, 9:55 AM
    Great answer @yus! It always depends on what you want to build, but if you’re just getting started Apollo will indeed be a good choice to get you off the ground. If you want to invest in your product and have really good performance at the expense of spending more time learning the framework then Relay will be a good fit as well!
    πŸ‘ 1
  • a

    artyom

    06/03/2017, 10:21 AM
    @karlbateman @fletcher @erinther @marsouin @kapros @pdrummond @sstv @sv @mattd @jollari @yosefbennyw @ryanw @richardmuirhead @ramos16 @vysakh @innerdaze @valein @sam.macleod @nachopescado @sujoym @jony @lschultebraucks @tima @bmackley @sidparasnis @dinana @lincolnlaw @yazeed @blakek @imira @andrei_calazans @shrikanth πŸ‘‹ πŸ‘‹ hello there, everyone! glad you’re joining graphcool , let us know how it goes! πŸŽ‰ πŸ‘¨β€πŸ‘©β€πŸ‘§β€πŸ‘¦ graphql
    πŸ‘ 1
    graphcool 3
    πŸ‘‹ 2
  • s

    shrikanth

    06/03/2017, 10:23 AM
    @artyom Doing great. Am new to Graphcool. Just checking it out. πŸ˜„
    a
    • 2
    • 2
  • s

    sriram

    06/03/2017, 11:21 AM
    At a financial tech firm, we are trying to see if graphql and relay are a good fit.. we have rampant overfetching in our dashboards which graphql seems to help with.. however there is no real 'graph' structure i can impose on the domain.. there seems to be many 'entry points (roots)'.. do libraries like relay work well with such use cases ?
  • m

    mattd

    06/03/2017, 11:53 AM
    Hi, @sriram! I recently introduced GraphQL to the stack at the fintech startup I work for. While the data I'm using GraphQL with is not a graph structure (account balances), GraphQL has still been incredibly beneficial. We deal with multiple currencies and massive amounts of data. As an example, I decided to create several GraphQL types in our schema: Balance, Currency, Rate. This way we can always grab exactly what we want, no over or under-fetching. Would be happy to answer any questions you may have! simple smile
  • s

    sriram

    06/03/2017, 12:09 PM
    thanks @mattd for sharing.. how did you handle reference (enumeration) data ? the dashboards i am looking to replace have a lot of dropdowns like regions, exchanges etc. do we fetch this data 'out of band' without relay/apollo ?
    n
    • 2
    • 1
  • m

    mattd

    06/03/2017, 12:17 PM
    I created several Enums in my schema for things like
    AccountType
    ,
    LegalEntity
    . Thankfully these values do not change often for us (as in it could be years if ever before these change) so I simply hard-coded them. In a more dynamic case you could fetch distinct values from a DB or through an API call and set your possible Enum values that way.
  • y

    yus

    06/03/2017, 12:18 PM
    @nilan does the current version of apollo (1.4) support graphcool functions? I have setup two pipeline functions (transform and prewrite) and tested them individually from the console successfully; however when I tried to invoke them from react-apollo, i get an error like this
  • y

    yus

    06/03/2017, 12:18 PM
    -.js
  • y

    yus

    06/03/2017, 12:19 PM
    My transform function is supposed to transform id from dummyId to a real id. It doesn't look like the transform function gets invoked though
    n
    • 2
    • 1
  • m

    miczed

    06/03/2017, 12:41 PM
    Hi guys! I've been using Graphcool for a couple of weeks now switching over from Firebase and I am really impressed. Currently I am stuck on a problem related to the filtering of subfields. Is there a special channel for technical questions or where is the right place for questions like this?
    s
    • 2
    • 1
  • p

    pavloko

    06/03/2017, 3:39 PM
    I’ve found an issue with the cli. If a project name has `_`or
    -
    , the cli would only parse the first part and won’t find the project. For example, for a project with alias
    myproject-staging
    , the error would be
    No project with id 'myproject'
    .
    😁 1
    πŸ‘ 1
  • s

    sorenbs

    06/03/2017, 3:45 PM
    Good catch @pavloko πŸ™‚ Could you please open an issue in https://github.com/graphcool/graphcool-cli
  • e

    eliezedeck

    06/03/2017, 6:13 PM
    hmm... I'm getting
    failed: Error during WebSocket handshake: Unexpected response code: 400
    when initializing Apollo client + websocket (for subscription)
  • s

    sorenbs

    06/03/2017, 7:28 PM
    Hey @eliezedeck πŸ™‚ What version of apollo are you using? One of the new versions introduced a breaking change to the protocol that we have not implemented support for yet
  • s

    swttt

    06/03/2017, 7:34 PM
    Indeed, had the same issues yesterday. Forcing to version 0.6.0 in the package.json fixed it πŸ™‚
    πŸ‘ 1
  • s

    sorenbs

    06/03/2017, 7:35 PM
    πŸ‘ We’ll add support for 0.7.0 early next week
  • a

    amann

    06/03/2017, 10:49 PM
    I'm working on implementing some request pipeline functions but I am getting an error with reference to a log. Where can I see this log on the graphcool console?
    n
    • 2
    • 1
  • a

    amann

    06/03/2017, 11:01 PM
    Are you able to perform any kind of transform argument on the auth0 create user mutation?
    n
    • 2
    • 1
  • i

    iamrommel

    06/04/2017, 12:42 AM
    Is there a roadmap for graphql analytics, just like of meteor optics, or integration of meteor optics to graphql
    j
    • 2
    • 2
  • a

    ahanif

    06/04/2017, 2:07 AM
    is graphview not functioning
    n
    • 2
    • 2
  • e

    eliezedeck

    06/04/2017, 4:33 AM
    @sorenbs well, I'm using 1.4.0, just starting out a project and followed tutorials
  • e

    eliezedeck

    06/04/2017, 4:34 AM
    so, I'll be using Apollo 1.3.x just in order to start; thanks for the update @sorenbs
  • y

    yus

    06/04/2017, 4:37 AM
    @sorenbs @nilan so it appears i can't mutate the id field in the transform hook. This seems to be by design. Is that correct?
    s
    n
    • 3
    • 3
1...215216217...637Latest