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

    tim2

    02/22/2017, 8:18 AM
    @m.b.iqbal You can do it without an intermediary table :) Just use the "Create Relation" button in the console and specify what you need. You can even specify if the field name should be the same for both relation ends or a different one
  • a

    alex_ye

    02/22/2017, 8:23 AM
    Hi! Does graphcool support variables in subscriptions? Can’t make them work. As soon as I add variables, I get "Subscription timed out - no response from server"
  • a

    alex_ye

    02/22/2017, 8:31 AM
    Subscription_with_variables_example.js
  • t

    tim2

    02/22/2017, 9:31 AM
    Hi @alex_ye, nope currently we don’t support variables. However, luckily enough we deploy a new version of the Subscriptions today! That should also support variables. We will inform you when the new Subscriptions are ready!
    💥 1
    ❤️ 2
  • a

    alex_ye

    02/22/2017, 9:52 AM
    wow, what a timing 😃
    👍 1
  • a

    alex_ye

    02/22/2017, 9:55 AM
    @tim2 it would be great to see fragment support as well
  • e

    emilrmoeller

    02/22/2017, 1:30 PM
    Just saw @schickling are doing a talk tomorrow and i found a live stream

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

    I’m looking forward 😄
    🎉 5
    👍 3
    graphcool 5
  • m

    martin

    02/22/2017, 4:27 PM
    What’s the
    gc-pat
    mentioned here:
    now secret add gc-pat XXX
    https://www.graph.cool/docs/tutorials/stripe-payments-with-mutation-callbacks-using-micro-and-now-soiyaquah7#setup-now
    n
    • 2
    • 114
  • m

    mulyoved

    02/22/2017, 5:23 PM
    Hi, simple CRUD case with apollo client/react - show list of records - delete one - return to list, still see deleted record, render() was called with old data - refresh page, deleted removed from list list qery
    Copy code
    const DishQuery = gql`query allDishes { 
      allDishes(orderBy:updatedAt_DESC) {
        id
        iconid
        translation: dishTranslations(filter:{language:EN}) {
          name
        }
      }
    }`;
    delete query
    Copy code
    const DeleteDish = gql`mutation deleteDish($id:ID!) { 
      deleteDish(id: $id) {
        id,
      }
    }`;
    expected this to be automatic from Apollo without a need to refetch() what I am missing?
    n
    • 2
    • 11
  • n

    nikolasburk

    02/22/2017, 5:25 PM
    @mulyoved did you include the
    dataIdFromObject
    -function when instantiating the
    ApolloClient
    ?
    Copy code
    export const client = new ApolloClient({
      networkInterface,
      dataIdFromObject: o => o.id,
    })
  • m

    mulyoved

    02/22/2017, 5:26 PM
    I do
    Copy code
    const client = new ApolloClient({
      networkInterface,
      dataIdFromObject: o => o.id
    });
  • s

    sunrising

    02/22/2017, 6:12 PM
    Hi! i would need to push some nodes to graphcool, like massively: is there a way to import data fast?
    n
    • 2
    • 15
  • a

    aurnik

    02/23/2017, 3:16 AM
    Is there any way to easily resize the columns in graphcool?
    n
    • 2
    • 1
  • z

    zahid

    02/23/2017, 6:34 AM
    is there any article that compares graph.cool and AWS Mobile Hub?
    n
    • 2
    • 7
  • g

    gopidon

    02/23/2017, 7:29 AM
    I had my integration with algolia set up nicely. Its working great. I had to change the name of my index in algolia. I went ahead and changed it in algolia. However the index name on graphcool remains as old name. Now tye auto sync fails as expected. How do i edit the name of index from graphcool side ????
    n
    • 2
    • 1
  • n

    nilan

    02/23/2017, 6:52 PM
    Hey guys, in ten minutes there's a live stream for an AMA with @schickling and Apollo's Jonas Helfer from the CinemaJS conference happening in Barcelona

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

    graphql 🎉
    🎉 4
  • n

    nilan

    02/23/2017, 7:03 PM
    It's starting 😮
  • k

    kristiansorens

    02/23/2017, 8:12 PM
    @nilan Do you know if the AMA will be available for streaming at a later point?
  • n

    nilan

    02/23/2017, 8:12 PM
    it's now a regular youtube video 🙂
  • k

    kristiansorens

    02/23/2017, 8:13 PM
    awesome! 🙂
  • a

    artyom

    02/23/2017, 8:54 PM
    🙌 @onewiseburdman @zahid @dougbooth @dima.rgb @fiibbb hello!
  • k

    kimf

    02/23/2017, 9:29 PM
    Good evening (in Sweden at-least). Anyone here playing with graph.cool and react-native (or native ios/android). I'm playing with subscriptions and that is all fine and dandy as long as the app is in the foreground. Now I'm sitting here thinking about how to solve it while the app is in the background. Push-notifications would be a really good candidate, but it kind of feels like writing the same logic twice. I’m guessing someone else has thought about this (and maybe solved it in some nice way)
    n
    a
    s
    • 4
    • 30
  • k

    kimf

    02/23/2017, 10:38 PM
    Btw, there seems to be some changes done to how the subscriptions work, are there some documentation on the changes?
    n
    s
    • 3
    • 14
  • a

    artyom

    02/24/2017, 10:43 AM
    @falconerd @pearpages @alarv 👋 👋 hello! welcome to our slack
    👍 2
  • p

    pearpages

    02/24/2017, 10:45 AM
    hello 🙂 👋🏻
  • a

    artyom

    02/24/2017, 10:53 AM
    hi! ping us if you need help getting started or any questions pop up
  • a

    afgh

    02/24/2017, 10:57 AM
    Can you use subscriptions in the playground or should I still be using http://graphcool-subscriptions-debugger.surge.sh/ for that?
  • s

    schickling

    02/24/2017, 11:13 AM
    Hey @afgh! You can use it from the playground, but we’ll shortly roll out a all-new version of subscriptions
    👍 3
  • s

    schickling

    02/24/2017, 11:13 AM
    Stay tuned! 📻
  • a

    alarv

    02/24/2017, 11:26 AM
    hey guys, beautiful product and implementation!
    ❤️ 3
    ➕ 1
    🎉 2
    🍾 5
    🚀 2
1...110111112...637Latest