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

    dk0r

    04/09/2017, 6:16 PM
    In trying out the react-apollo-instagram example (https://github.com/graphcool-examples/react-apollo-instagram-example), the page simply shows 'Loading' rather than any of the data I added. Any suggestions?
  • d

    dk0r

    04/09/2017, 6:17 PM
    Here's successful compilation:

    http://i.imgur.com/UgTOWZu.png▾

  • d

    dk0r

    04/09/2017, 6:17 PM
    Here's the error:

    http://i.imgur.com/kSPRagm.png▾

  • t

    trond

    04/09/2017, 6:19 PM
    For example, regarding Graphcool vs hosted Parse Server on Node, I end up wondering if what cleaner code I have in my mobile clients will be outweighed by messier stack of serverless functions that handle things like push notification and transactional emails etc
    n
    • 2
    • 2
  • a

    anthony

    04/09/2017, 6:25 PM
    👍 2
  • a

    anthony

    04/09/2017, 6:26 PM
    👍
  • d

    dk0r

    04/09/2017, 6:39 PM
    There seem to be some errors with the react-apollo-instagram example (https://github.com/graphcool-examples/react-apollo-instagram-example). Details posted above ^
    n
    • 2
    • 13
  • k

    kmeillet

    04/10/2017, 2:33 AM
    Is it possible to update user email & password ?
    n
    • 2
    • 2
  • m

    marciobueno1

    04/10/2017, 2:40 AM
    https://console.graph.cool/%PROJECT_NAME%/settings/billing Shows the usage: Database and Requests But, my Requests usage is 0 So, with a free plan, can't I know how many requests I am doing while I am developing the App?
    n
    • 2
    • 6
  • a

    artyom

    04/10/2017, 8:15 AM
    @williamz @emanualjade @twelvearrays @kenan.warren @keplersj @tafelito hello everyone and welcome into your week with graphcool 🎉 🌞
  • w

    wallslide

    04/10/2017, 8:36 AM
    It doesn't seem like my Algolia integration is syncing properly.
    n
    • 2
    • 35
  • a

    artyom

    04/10/2017, 9:42 AM
    👋 @rexlow great that you’re joining us! graphcool 🚀
  • n

    notrab

    04/10/2017, 11:01 AM
    I’m looking to store location details to show on a map for an
    Event
    type, I’m thinking of using a node
    geocoder
    lib to get the long/lat, would you suggest storing this within a Json type? or two fields? I’ll also store the location as a string that the user types (which is used to lookup long/lat)
    n
    • 2
    • 12
  • a

    artyom

    04/10/2017, 11:03 AM
    hi @ryan welcome to graphcool 👋
  • r

    ryan

    04/10/2017, 12:04 PM
    @artyom Glad to be part of the community! 👋
  • a

    artyom

    04/10/2017, 12:04 PM
    🙌
  • u

    uzu

    04/10/2017, 1:43 PM
    hi all, i have a todo and a tags table, i have a relation many to many between them and i try to create a todo and set my tag with their ids, this is my mutation: mutation createTodo($text: String!, $ids: [ID!]) { createTodo (text: $text, tagsIds: $ids) { id text } } when creating todo from my app the tagsIds stay empty i dont know why i pass it like this : ["id1", "id2", ... , "idn"]
    n
    • 2
    • 29
  • n

    notrab

    04/10/2017, 1:56 PM
    I’ve an issue with Subscriptions, it’s had me going for hours…
  • n

    notrab

    04/10/2017, 1:57 PM
    This works:
    Copy code
    subscription {
                Event(filter: {
                  mutation_in: [CREATED]
                }) {
                  node {
                    id
                    name
                    description
                  }
                }
              }
    But this doesn’t…
    Copy code
    subscription {
                Event(filter: {
                  mutation_in: [CREATED]
                }) {
                  node {
                    id
                    name
                    description
                    when
                  }
                }
              }
    The error is :
    "Cannot query field 'when' on type 'Event'. (line 7, column 7):
    n
    • 2
    • 13
  • a

    artyom

    04/10/2017, 2:02 PM
    @genslabs hello and welcome! glad you’re joining us graphcool 🖖
  • a

    alechp

    04/10/2017, 2:45 PM
    Hey! Love the work you’re doing. Found two minor issues: a) Unable to edit Type descriptions. `Reproduce`: 1. Click settings cog on Type. 2. Edit description 3. Click save Tried this on two different types and received an error both times. `In-App Error`:
    Copy code
    Whoops. Looks like an internal server error. Please contact us in Slack (<https://slack.graph.cool>) and send us your Request ID: cj1c8773ym8rq0105ipqk7mqy
    2) The description field doesn’t stretch to match the width of the container:
    n
    • 2
    • 3
  • a

    alechp

    04/10/2017, 2:46 PM
  • t

    tafelito

    04/10/2017, 2:49 PM
    Hi, I'm having an issue with the User Authentication example. I couldn't run the example as it is now, but when trying to reproduce in my code, after signing in, the user is not updated unless and refresh the all app. I used fetchPolicy 'network-only' to replace the forceFetch but still not working. Another way I made it work is to refetch the user like this
    this.props.data.refetch()
    Any ideas what could be the problem?
    n
    • 2
    • 49
  • l

    lewisblackwood

    04/10/2017, 4:41 PM
    hey team 👋 is there a way to backfill a newly created type, maybe based on a relation? For example, I want to create a settings type which has a one-to-one relationship with an organisation type. Can I easily backfill a settings record for each existing organisation, with some default values in the fields?
    n
    • 2
    • 12
  • a

    artyom

    04/10/2017, 5:06 PM
    @movibe whoop! 🖖 glad you're joining us! graphcool
  • d

    dk0r

    04/10/2017, 5:33 PM
    Anyone know how to create relations via the web console? Graphcool has a video tutorial for this topic but it's for an older version of the console ui.

    https://www.youtube.com/watch?v=Pz51CTyqSLo▾

    n
    • 2
    • 2
  • a

    alechp

    04/10/2017, 6:06 PM
    Free mini UI kit (Sketch) for mapping data relationships: https://twitter.com/alechp/status/851496175446310912
    👍 1
    👏🏽 1
  • s

    sdubois

    04/10/2017, 6:52 PM
    Hi! Is there something to do to distribute Graphcool files through CDN or is it built-in? I have users in us-west, us-east, europe, and all the way to australia...
    n
    • 2
    • 11
  • a

    artyom

    04/10/2017, 7:21 PM
    @sebastien 🖖 hi there!
  • s

    sebastien

    04/10/2017, 8:01 PM
    Hey there @artyom! Thanks for the welcome. Glad to be trying out Graphcool, very exciting stuff. I’m running into a first issue. Trying to play with a subscription that automatically updates in an Angular 4 app. I’m trying to use v0.5.4 of subscriptions-transport-ws and getting errors about tag/printer. In the Graphcool Angular demo app it’s using Client from that package, but it looks like it was renamed to SubscriptionClient if I’m correct. I realize that this may not have anything to do with Graphcool though. Just throwing it out there in case someone has an easy fix. Also looking to see if there any docs to integrate auth0 into an Angular 4 app.
    a
    n
    k
    • 4
    • 16
1...149150151...637Latest