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

    nilan

    04/12/2017, 9:13 AM
    Thanks everyone, for your help and patience, we posted an update to our status page about the recent incident: https://status.graph.cool/ πŸ™Œ
    πŸ™ 1
  • a

    artyom

    04/12/2017, 9:15 AM
    @putuyoga πŸ–– be welcomed into graphcool πŸ™‚
  • p

    putuyoga

    04/12/2017, 9:17 AM
    Hi guys
    πŸ™Œ 1
  • a

    artyom

    04/12/2017, 9:31 AM
    hi @ryanlwh what a great day to join graphcool πŸ‘
  • a

    adam.hoscilo

    04/12/2017, 10:34 AM
    Hi everyone and really nice to see that graphcool is growing. I love the UX of the whole product (my field). I'm waiting for more granular permissions for objects - it seems like the only piece missing
    ❀️ 2
    a
    n
    • 3
    • 10
  • w

    wallslide

    04/12/2017, 11:40 AM
    I'm seeing some errors in the UI.
    n
    • 2
    • 8
  • a

    artyom

    04/12/2017, 11:41 AM
    @stepan πŸŽ‰ glad you’re joining us today! πŸ‘‹
    πŸ™‚ 1
  • b

    brad.barnes

    04/12/2017, 11:49 AM
    Hello, I looking for opinions. Use back end search to avoid indexing things or that is for a single user's eyes only or index it all for Algolia? -Thanks
    n
    • 2
    • 7
  • a

    artyom

    04/12/2017, 1:16 PM
    @tjoskar πŸ‘‹ welcome!
  • a

    artyom

    04/12/2017, 2:20 PM
    @fathomlondondev hi there! πŸ™‚
  • a

    artyom

    04/12/2017, 2:54 PM
    @nickccm1122 whoop! πŸŽ‰ welcome to graphcool
  • n

    nickccm1122

    04/12/2017, 2:55 PM
    Hello every one!
    πŸ™Œ 4
  • a

    aaronkchsu

    04/12/2017, 3:10 PM
    hey has anyone used graphql with agolia before? How do I convert the result form graphql to work with the index of agolia? πŸ˜„
    n
    • 2
    • 3
  • a

    aaronkchsu

    04/12/2017, 3:10 PM
    on ios
  • a

    artyom

    04/12/2017, 6:40 PM
    @stephendrew @colin @abers @needforspeed hello there! today’s a great day to join our slack graphcool πŸ™‚
    πŸ‘‹ 3
  • v

    vacom

    04/12/2017, 7:33 PM
    Hi, is anyone here on the graphcool team? I am having what I think is a bug in the graphcool console, to test some of the features of my app, I have to insert a lot of information on your platform by hand. The problem is not there, is when I want to relate data between a relationship between types, does not show the modal with selection suggestions that showed before, to show again I have to leave account and log in and it works again but for a short time, Is it a bug?
    n
    h
    • 3
    • 3
  • s

    svrcekmichal

    04/12/2017, 7:48 PM
    Hey guys, thanks for all the work you've done! πŸ™‚
    ❀️ 2
    πŸ™Œ 2
    graphcool 3
  • n

    nilan

    04/12/2017, 7:49 PM
    Welcome @svrcekmichal πŸ™Œ I'm sure @nikolasburk is looking forward to the feedback you can provide πŸ™‚
  • s

    svrcekmichal

    04/12/2017, 8:14 PM
    I hope so. The article is great, I just found few sentences missleading. I'm also going to give some opinions I learned from application I've written. This is for me the alfa and omega of whole selection between apollo and relay
    Copy code
    In short, Relay lends itself well for large-scale applications that have complex data requirements and many dependencies between different parts of the application where maintaining these dependencies by hand would be very tedious and error-prone. Apollo on the other hand provides a much more lightweight and flexible approach that works in any environment. Many tasks such as keeping the local cache consistent can also be achieved with the Apollo Client but require more manual work and bookkeeping.
    I can't agree more with this sentence, because when we started to build are first application I've heard so much stuff about complexity which relay brings that I didn't even tried it and only used Apollo. And apollo was in the process of building, it was changing quite often, but it didn't mattered that times. The problem for me is mentioned above. It's great for small applications, but when we were getting to more complex stuff it expected from us too much work to do on our side. But what I want to talk is few sentences in article which should probably be better explained to people.
    Copy code
    In Relay, every object is expected to have a unique ID which is why every model type needs to implement the Node interface
    I would mention that, yes, it's expected, but it's not must. The reason of the global node id is for better graph traversing and reducing how much would relay query from server. In article you mention that it's for effective fetch after mutation, but it's also for effective fetch when fragment variables changes like load more edges of connection or some modal become visible etc.
    Copy code
    mutation needs to be defined as a subclass of the Relay.Mutation class
    There is also low level API for modeling mutation, can be seen here: https://facebook.github.io/relay/docs/api-reference-relay-graphql-mutation.html#content It's prepared for relay 2 to reduce learning curve of mutations
  • s

    svrcekmichal

    04/12/2017, 8:16 PM
    And the last part, about subscriptions. About month ago we started testing of relay subscriptions with package you mentioned in article together with https://github.com/edvinerikson/relay-subscriptions and for now I believe it's going quite well πŸ™‚
  • s

    svrcekmichal

    04/12/2017, 8:18 PM
    Btw. thanks for mentioning caleb's article https://dev-blog.apollodata.com/apollo-clients-new-imperative-store-api-6cb69318a1e3 going to check that. It's been quite a time since I last check how apollo is doing so I'm going to try that. From what I see they added quite a lot, so maybe it will be totally different experience πŸ™‚
  • z

    zth

    04/12/2017, 8:46 PM
    @svrcekmichal do you have any insight on Relay Modern?
  • z

    zth

    04/12/2017, 8:46 PM
    I've been reading about it a bit
  • z

    zth

    04/12/2017, 8:46 PM
    Been using both Apollo and Relay in various projects, and I like parts of them both
  • z

    zth

    04/12/2017, 8:47 PM
    But the co-location of data requirements in Relay really speaks to me
    πŸ‘ 1
  • z

    zth

    04/12/2017, 8:47 PM
    So naturally I'm very intrigued by Relay Modern
  • a

    artyom

    04/12/2017, 10:16 PM
    @scotthamilton @apolo_codes πŸ‘‹ enjoy exploring graphcool !
  • m

    mel

    04/13/2017, 12:44 AM
    ran into an internal server error πŸ˜• Request ID: cj1foj754zxu30167fpojpgz1
    n
    • 2
    • 1
  • t

    trphthinh1712

    04/13/2017, 3:11 AM
    I got error with react-relay-instagram-example
  • t

    trphthinh1712

    04/13/2017, 3:12 AM
    ERROR in ./src/index.js Module build failed: SyntaxError: Unexpected token = at exports.runInThisContext (vm.js5316) at Module._compile (module.js37425) at Object.Module._extensions..js (module.js41710) at Module.load (module.js34432) at Function.Module._load (module.js30112) at Module.require (module.js35417) at require (internal/module.js1217) at Object.<anonymous> (/home/debtao/Programming/Javascript/LearnGraphCool/react-relay-instagram-example/node_modules/babel-plugin-react-relay/lib/index.js4728) at Module._compile (module.js41026) at Object.Module._extensions..js (module.js41710) at Module.load (module.js34432) at Function.Module._load (module.js30112) at Module.require (module.js35417) at require (internal/module.js1217) at /home/debtao/Programming/Javascript/LearnGraphCool/react-relay-instagram-example/node_modules/babel-core/lib/transformation/file/options/option-manager.js17420 at Array.map (native) at Function.normalisePlugins (/home/debtao/Programming/Javascript/LearnGraphCool/react-relay-instagram-example/node_modules/babel-core/lib/transformation/file/options/option-manager.js15420) at OptionManager.mergeOptions (/home/debtao/Programming/Javascript/LearnGraphCool/react-relay-instagram-example/node_modules/babel-core/lib/transformation/file/options/option-manager.js22936) at OptionManager.init (/home/debtao/Programming/Javascript/LearnGraphCool/react-relay-instagram-example/node_modules/babel-core/lib/transformation/file/options/option-manager.js37412) at File.initOptions (/home/debtao/Programming/Javascript/LearnGraphCool/react-relay-instagram-example/node_modules/babel-core/lib/transformation/file/index.js21665) at new File (/home/debtao/Programming/Javascript/LearnGraphCool/react-relay-instagram-example/node_modules/babel-core/lib/transformation/file/index.js13924) at Pipeline.transform (/home/debtao/Programming/Javascript/LearnGraphCool/react-relay-instagram-example/node_modules/babel-core/lib/transformation/pipeline.js4616) at transpile (/home/debtao/Programming/Javascript/LearnGraphCool/react-relay-instagram-example/node_modules/babel-loader/lib/index.js4120) at Object.module.exports (/home/debtao/Programming/Javascript/LearnGraphCool/react-relay-instagram-example/node_modules/babel-loader/lib/index.js13812)
1...151152153...637Latest