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

    artyom

    04/19/2017, 4:19 PM
    @matejkriz hello! nice to see you in our graphcool slack πŸ™‚ πŸ‘‹
    m
    • 2
    • 1
  • a

    artyom

    04/19/2017, 5:55 PM
    @ayatkevich @wojtek πŸŽ‰ hey there! πŸ––
    βœ‹ 1
  • w

    wojtek

    04/19/2017, 5:56 PM
    hey! totally forgot i had this in my inbox πŸ™‚
  • w

    wojtek

    04/19/2017, 5:56 PM
    i've been using graphcool for a week and it's awesome!
    n
    • 2
    • 1
  • a

    artyom

    04/19/2017, 5:58 PM
    better late then never πŸ˜‰ glad you made it!
    πŸ’ƒ 1
  • w

    wojtek

    04/19/2017, 6:02 PM
    i just added the auth0 integration to my react app today and was wondering whether you have an importer for users
  • w

    wojtek

    04/19/2017, 6:02 PM
    i signed in with my account and added a new mutation from the console with the generated token
  • w

    wojtek

    04/19/2017, 6:02 PM
    wondering if i would have to do the same thing for another account or if there's a way to import it from auth0 to the database
    n
    • 2
    • 1
  • j

    jshort

    04/19/2017, 6:03 PM
    @wojtek I actually need that myself for a migration.
  • j

    jshort

    04/19/2017, 6:04 PM
    If I happen to put something together I will OS it and let you know
    graphcool 2
    graphql 1
    ❀️ 1
    🀘 4
  • w

    wojtek

    04/19/2017, 6:06 PM
    in my case it's just 1 other account to be handled, so i can do that manually. never hurts to ask though πŸ˜‰
    n
    • 2
    • 2
  • j

    jshort

    04/19/2017, 6:10 PM
    dang with that many reactions I may just have to do this today...
    β˜• 1
  • w

    wojtek

    04/19/2017, 6:11 PM
    no pressure, though!
  • a

    artyom

    04/19/2017, 6:11 PM
    nope, none. at. all… πŸ‘Ή
    😈 1
  • a

    artyom

    04/19/2017, 6:42 PM
    @jaga_santagostino @raulbajales whoopla, hello there! graphcool πŸ™Œ
  • i

    ilja

    04/19/2017, 6:50 PM
    Hey guys, this might have been asked here before (sorry if I am duping a question), but are there plans to extend default graphcool’s auth email and pass system to address some missing features like:
    Copy code
    1) email verification
    2) password reset
    3) session token refreshing
    4) email change
    n
    • 2
    • 4
  • h

    huv1k

    04/19/2017, 7:20 PM
    is there any downside with query batching?
    s
    n
    • 3
    • 10
  • j

    jaga_santagostino

    04/19/2017, 7:34 PM
    Hello everyone
    πŸ™Œ 1
    πŸ‘‹ 1
  • r

    raulbajales

    04/19/2017, 7:50 PM
    hey!!! πŸ™‚
    πŸ™Œ 1
    πŸ‘‹ 1
  • a

    artyom

    04/19/2017, 7:52 PM
    @damienix a warm welcome to you also! πŸ‘‹
  • d

    damienix

    04/19/2017, 10:52 PM
    welcome
  • d

    dkh

    04/20/2017, 12:42 AM
    At what point during the Auth0 Authentication process are you supposed to run the createUser mutation? Right now I’ve got this in my main App container but I know this has to be the wrong direction.
    Copy code
    componentWillMount() {
        const auth = this.props.route.auth
        auth.on('profile_updated', (profile) => {
          this.createUser(profile)
        })
      }
    n
    • 2
    • 4
  • u

    utunga

    04/20/2017, 1:07 AM
    hey all - again apologies if this has been asked - have been googling without success Wondering if there is an IDL spec for the graphQL filter queries - ie the default params for the auto-generated 'allCompanies' or whatever end point including such awesome bits as the 'filter' param and the first param etc etc To clarify - I'm trying to write an IDL document - in this format - https://www.graph.cool/docs/faq/graphql-idl-schema-definition-language-kr84dktnp0/ That includes the allPosts() or whatever function under query
  • i

    ilja

    04/20/2017, 5:36 AM
    Is there a guide I could reference showing secure integration between graphcool and aws lambda? i.e. creating specific access rights for graphcool (read/write) and seting it up as only user who can execute these lambda functions. As an example, something like this guide from MongoDB (https://www.mongodb.com/blog/post/serverless-development-with-nodejs-aws-lambda-mongodb-atlas) seems extremely useful.
    n
    • 2
    • 2
  • s

    sdubois

    04/20/2017, 7:38 AM
    Question, what is the recommended way to migrate a user database to Graphcool, together with their password data? (I come from Rails with Devise)
    n
    • 2
    • 4
  • a

    artyom

    04/20/2017, 8:15 AM
    a crew of awesome folks joining us today πŸ‘― a warm welcome to @nattthmal @patrickj @be4r @cgaafary @taro @otofu-square welcome to graphcool πŸ™Œ
    graphcool 1
    πŸ‘ 2
  • u

    utunga

    04/20/2017, 9:28 AM
    hey folks.. so im burning the midnight oil here trying to get this GRaphQL project specced out would really apprecate any pointers on any kind of IDL that might exist for Graph.Cool Filters ?
    n
    • 2
    • 1
  • u

    utunga

    04/20/2017, 9:29 AM
    This for example, ain't no dang good complains about 'Expected Input Type' when something tries to parse the IDL ?
    Copy code
    type ItemFilter {
      AND: [item]
      OR: [item]
      NOT: [item]
    }
    
    type Query { 
      # End point for lists of items 
      allItems(
        filter:ItemFilter
        sort: SortOptions
        take:Int
        skip:Int
  • u

    utunga

    04/20/2017, 9:30 AM
    @nilan my sincere apologies
  • u

    utunga

    04/20/2017, 9:30 AM
    didnt see your reply to my earlier question hiding in the thread...thats awesome, thanks
1...159160161...637Latest