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

    amann

    04/28/2017, 7:35 PM
    Is anyone else experiencing issues?
  • f

    fourcolors

    04/28/2017, 9:08 PM
    Hey, is there anyway to authenticate other than digits and oAuth?
    n
    z
    • 3
    • 4
  • f

    fourcolors

    04/29/2017, 3:50 AM
    guess nobody knows
  • d

    danielvdm

    04/29/2017, 6:26 AM
    is the idea of using auth0 + graphcool to register users with lock and then also do a mutation?
  • d

    danielvdm

    04/29/2017, 10:09 AM
    has anyone run into this?
    Copy code
    GraphQL error: The provided idToken is invalid. Please see <https://auth0.com/docs/tokens/id_token> for how to obtain a valid idToken
    n
    • 2
    • 44
  • d

    danielvdm

    04/29/2017, 10:09 AM
    i'm using auth0 lock, registering successfully, it returns a
    token
    object with a field
    idToken
    but graphql won't accept it 😕
  • d

    danielvdm

    04/29/2017, 10:10 AM
    i've tried both in my app and in the playground (pasting in a token)
  • d

    dmiller

    04/29/2017, 6:28 PM
    Hey Folks, is it possible to export your queries and mutations like you can your other types? For use with relay compiler?
    n
    d
    • 3
    • 7
  • c

    chrisvh

    04/29/2017, 10:47 PM
    what would be the best way to configure the sample Apollo project if I didn't want to use forceFetch to update when deleting a pokemon?
  • a

    andrius

    04/30/2017, 12:05 AM
    Hi! I have made a copy of project , changed api endpoint, and now I am getting
    Copy code
    "code": 3008,
          "message": "No CONNECT permissions",
    in playground if I run mutation for Everyone, for Admin it's ok I also get same error in nodejs In permissions I have allow all for everyone why could that be like this?
    n
    • 2
    • 4
  • c

    chrisvh

    04/30/2017, 12:29 AM
    when I use the following snippet from Excursion 02 - Managing Apollo store, I get “Uncaught TypeError: _this.props.mutate is not a function”
    reducer_implementation.txt
  • h

    huv1k

    04/30/2017, 8:58 AM
    Hey, i have question what is best way to store dates for task, when i want to have task from date to date, but sometimes have pause in between end and start do you have some idea how to best store pauses? when i want have for example 2 pauses? 1.3-5.3 pause 8.3-10.3 pause 12.3-15.3 any tips? 🙂
    s
    • 2
    • 1
  • h

    huv1k

    04/30/2017, 9:00 AM
    i had idea to have Custom type pause and there have again start and end date
  • s

    sdubois

    04/30/2017, 9:09 AM
    FYI Graphcool was used at Zeit Day in react-sketchapp demo presented by John Gold from Airbnb 🙂 https://zeit.co/day
    🦜 1
    ❤️ 4
    👍 1
    s
    • 2
    • 1
  • u

    user

    04/30/2017, 10:44 AM
    @nilan commented on @chrisvh’s file https://prisma.slack.com/files/U56FMJBFV/F55TXN8QG/reducer_implementation.txt: I think this will be the props createPokemon instead. You can also print the props to see which elements are defined 🙂
    reducer_implementation.txt
  • a

    artyom

    04/30/2017, 1:11 PM
    hello to all the great folks joining us over the last few days! @gary @felipegalvao @jpabbuehl @kb @vdsancheza @vnjogani @nosykretts @royvanderloo @vinciarts @zufrizalyordan @kucharskimaciej @hugues @apertureless @rctandfk welcome, glad to have you around graphcool 🎉 👋
    👍 1
    👋 1
  • a

    apertureless

    04/30/2017, 2:16 PM
    Thanks! 🙏
    🙌 1
  • a

    andrius

    04/30/2017, 5:34 PM
    Is there plans to have import/merge schema in any foreseeable future ?
    n
    • 2
    • 2
  • h

    hvillain

    04/30/2017, 6:08 PM
    Have you guys tried Micro from Zeit? I'd seriously consider it as an option, especially for people trying GCool and micro services more generally. Plus they have some nice plugins to spice things up (logs, Joi etc.)
    n
    • 2
    • 8
  • h

    huv1k

    04/30/2017, 6:10 PM
    Its possible to export graph view? 🙂
    n
    • 2
    • 3
  • s

    srhise

    04/30/2017, 8:54 PM
    Hello all, I am trying to mutate a field on an item that is a relation… Are there any code samples of this anywhere? I just need the query itself nothing else
    n
    • 2
    • 25
  • j

    jv.bianchi

    04/30/2017, 10:18 PM
    hello all, i got this error:
    Copy code
    {
      "data": {
        "createAtividade": null
      },
      "errors": [
        {
          "locations": [
            {
              "line": 12,
              "column": 3
            }
          ],
          "path": [
            "createAtividade"
          ],
          "code": 3008,
          "message": "Permission Query is invalid. Could not be parsed.",
          "requestId": "cj2599tqrhp1k0194az0e89mx"
        }
      ]
    }
    but it doesn’t say which permission query is the problem.
    s
    • 2
    • 2
  • j

    jeffo

    04/30/2017, 11:37 PM
    If i'm trying to create a subscription in the console and the result is an empty error like this: {"error": [{}]} - is there some way to get a better understanding of the issue? My app started throwing 'subscription timed out - no response from server' so i tried running in the console and just see that empty error. Just wondering if anyone had insight into that to share?
    n
    • 2
    • 3
  • j

    joao.santos

    05/01/2017, 7:42 AM
    Hey guys this is example is not working, can someone help me:
    Copy code
    signinUser = () => {
        const {email, password} = this.state
    
        this.props.signinUser({variables: {email, password}})
          .then((response) => {
            window.localStorage.setItem('graphcoolToken', response.data.signinUser.token)
            this.props.router.replace('/')
          }).catch((e) => {
            console.error(e)
            this.props.router.replace('/')
          })
      }
    }
    How do i route to a url, i've already replace
    this.props.router.replace('/')
    to
    <Redirect push to="/" />
    but the page wont reload, I dont want to use
    window.location.pathname = '/'
    h
    n
    • 3
    • 63
  • a

    artyom

    05/01/2017, 8:17 AM
    come one, come all! hello everyone and welcome to graphcool @tom.mcclelland @jeevanp @vincent.d @toddgeist @davidchristie @memas @pleimann @nickyhajal @anraka @tobiast 👋
    👋 1
  • t

    tobiast

    05/01/2017, 9:03 AM
    Hi, I'm having some issues with the basic example used in the registration tutorial - it's refusing to npm start or yarn start with a "'REACT_APP_GRAPHQL_ENDPOINT' is not recognized as an internal or external command, operable program or batch file" error. Tried following the docs to a T twice. Has anyone come across this?
    j
    n
    • 3
    • 14
  • n

    nikolasburk

    05/01/2017, 10:31 AM
    Hello Friends 👋 We were supposed to give a “GraphQL+Apollo”-workshop in Warsaw this Saturday (based on the contents from the www.learnapollo.com website). There’ll be around ~30 participants. Unfortunately we can’t make it this time. If any of you would like to jump in, get in touch with me for further info. The workshop is part of http://devmeetings.de/en/ and won’t require any preparation from your side since all materials are already there. Bonusses for you: - Get experience as a mentor - Paid trip and accomodation to Warsaw - Expand your network I’ve done a few of these workshops in the past and it always was great fun!!
    🎓 3
  • a

    artyom

    05/01/2017, 10:33 AM
    @serle 👋 welcome! 🙂
  • s

    serle

    05/01/2017, 10:35 AM
    @artyom 👍
  • s

    stephen.sugden

    05/01/2017, 12:18 PM
    does the Simple API give some way of using the current (server-side) time? I'm implementing soft-deletion and want to set`deletedAt` on my nodes using a the same time source as the existing
    createdAt
    /
    updatedAt
    fields
    n
    • 2
    • 3
1...170171172...637Latest