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

    pcooney10

    07/28/2017, 5:37 PM
    Hey, anyone have some examples of using redux with apollo?
    z
    g
    • 3
    • 8
  • j

    janschloss

    07/28/2017, 5:38 PM
    Hey guys, quick question: Where are screenshots saved locally?
    p
    t
    • 3
    • 14
  • j

    janschloss

    07/28/2017, 5:44 PM
    * in chromeless
  • d

    dvarjun23

    07/28/2017, 6:50 PM
    hi where do I find the auth token for graph cool
    n
    • 2
    • 2
  • h

    hammerspb

    07/28/2017, 7:02 PM
    Hi, can anyone recommend a good account management react/apollo example/project? (LogIn/SingUp/EmailConfirmation/PwdReset/AccountManagement/AccountDeletion/Roles)
    n
    • 2
    • 1
  • m

    mman

    07/28/2017, 7:15 PM
    Hi, in graphqli whats the key combination to toggle comment
    n
    • 2
    • 1
  • e

    enricenrich

    07/28/2017, 7:21 PM
    Hi! I have a question not directly related to Graphcool / GraphQL – I'm trying to build the frontend for a Graphcool project and I'm coming from Swift / iOS development, so I'm a bit lost. I've discovered Vue.js which seems really good. This said, I've read about "server-side rendering" and "client-side rendering" and I'm not sure which way to go. What do you recommend me? 😊
    c
    m
    • 3
    • 4
  • s

    senorcodecat

    07/28/2017, 9:34 PM
    How are you guys handling registration/authentication? Are you using Graph.cool or a separate web server?
    a
    • 2
    • 1
  • b

    bstocks

    07/28/2017, 10:59 PM
    @hammerspb I'm just getting started myself and haven't tested out authentication/account mgmt yet. But here's the section of the docs that discusses options: https://www.graph.cool/docs/reference/integrations/overview-seimeish6e/#authentication-providers/
  • m

    martin

    07/29/2017, 1:41 AM
    Receiving
    500
    errors. Anyone else?
    Whoops. Looks like an internal server error. Please contact us from the Console (<https://console.graph.cool>) or via email (support@graph.cool) and include your Request ID: cj5oms2d0bwl00163gusr4ubu
    n
    • 2
    • 4
  • k

    katsgeorgeek

    07/29/2017, 1:48 AM
    Hey
  • k

    katsgeorgeek

    07/29/2017, 1:49 AM
    I’ve got
    Copy code
    Error: GraphQL error: The provided idToken is invalid. Please see <https://auth0.com/docs/tokens/id_token> for how to obtain a valid idToken
  • k

    katsgeorgeek

    07/29/2017, 1:49 AM
    used this tutorial https://auth0.com/docs/connections/passwordless/spa-email-link/v8
    a
    m
    • 3
    • 3
  • j

    joshpitzalis

    07/29/2017, 6:24 AM
    I have a question about wrapping a rest endpoint in graphQL. I just started learning how to use graphql last week and I’m starting to get the swing of things. I understand how to query and mutate basic data with apollo and graphcool on the backend. Now lets say I want to be able to call data from a third party api. Do I have to write my own graphql server, wrap the api, then wrap my graphcool api and use the new end point that combines the two? or is there a simpler way to add rest api call into an existing apollo/graphcool setup that doesn’t involve writing my own server?
    a
    • 2
    • 2
  • s

    samjbmason

    07/29/2017, 8:11 AM
    I want to use chromeless for integration tests are there any examples of using it alongside an assertion library or test suite like jest?
  • s

    samuell

    07/29/2017, 9:21 AM
    Hey, what is best solution to adding views to item? with mutation or function? like +1 every time i open page
    a
    • 2
    • 4
  • n

    notrab

    07/29/2017, 12:05 PM
    Is it possible to insert Json data via a mutation in the Console?
  • n

    notrab

    07/29/2017, 12:07 PM
    Copy code
    {
      "attributes": {
        "size": "2.1m",
        "colour": "Black"
      }
    }
    Variables are invalid JSON: Unexpected token J in JSON at position 18.
    🤔
    a
    • 2
    • 5
  • m

    matty

    07/29/2017, 1:16 PM
    is there a way to record the IP address of an incoming Create operation?
  • m

    matty

    07/29/2017, 1:16 PM
    trying to look at options for anti-gaming systems
    a
    • 2
    • 1
  • m

    matty

    07/29/2017, 1:41 PM
    also just looking through the github feature requests repo - there are a lot of great ideas in waiting it seems, is there a way to get a general sense of when we can expect certain ideas to land in production?
    a
    • 2
    • 1
  • m

    matty

    07/29/2017, 1:41 PM
    either GA or beta access
  • h

    havgry

    07/29/2017, 4:41 PM
    I'm having trouble with a very basic mutation where I'm creating a node of type
    manhour
    with a required reference to a node of type
    worker
    . I don't understand the error message I get as I provide
    workerId
    in the mutation. Any pointers?
    -.txt
  • a

    agartha

    07/29/2017, 4:45 PM
    Is manhour-worker accidentally a 1-on-1 relation, and do you already have a Manhour node for that worker? Then doing this mutation would disconnect the worker from the previous Manhour node, which is not allowed, because it's required. Can you share the schema that goes with this?
  • h

    havgry

    07/29/2017, 5:35 PM
    @agartha You're spot on. It was a 1-on-1 relation I overlooked. Thanks!
    😎 1
  • r

    robertb

    07/29/2017, 6:56 PM
    I’m playing around with graph.cool and I’m working on an editor where you can add sections to a (blog)post (think Medium editor), but it seems graph.cool is missing the
    union
    from the graphql spec, is this correct? What I’m trying to achieve is something like this:
    Copy code
    post {
      title
      createdAt
      sections {
        ... on Text {
          body
        }
        ... on HeroImage {
          id
          url
        }
        ... on Gallery {
          images {
            id
            url
          }
        }
        ... on Location {
          name
          lat
          lng
        }
      }
    }
  • r

    robertb

    07/29/2017, 6:57 PM
    is something like this possible with the current iteration of graph.cool or is there a workaround?
    a
    • 2
    • 1
  • y

    yakupad

    07/29/2017, 8:36 PM
    I have done this in all the right ways and have encountered such a problem. https://auth0.com/docs/quickstart/native/react-native/00-login
  • y

    yakupad

    07/29/2017, 8:36 PM
    I have done this in all the right ways and have encountered such a problem. https://auth0.com/docs/quickstart/native/react-native/00-login
  • y

    yakupad

    07/29/2017, 8:36 PM
    I have done this in all the right ways and have encountered such a problem. https://auth0.com/docs/quickstart/native/react-native/00-login
1...291292293...637Latest