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

    cullan

    01/23/2017, 4:36 PM
    Hello. ๐Ÿ‘‹
  • a

    arthurtayrac

    01/23/2017, 4:52 PM
    hey!
  • s

    schickling

    01/23/2017, 4:54 PM
    ๐Ÿ’ฏ @thisismissem
  • c

    codepreneur

    01/23/2017, 5:14 PM
    @thisismissem when you want things that you know will work you choose erlang
  • c

    codepreneur

    01/23/2017, 5:14 PM
    anything written in erlang can run for centuries ๐Ÿ˜„
  • t

    thisismissem

    01/23/2017, 5:17 PM
    @codepreneur not necessarily.
  • t

    thisismissem

    01/23/2017, 5:17 PM
    Things written in erlang tend to only last for centuries because of the people that write erlang
  • t

    thisismissem

    01/23/2017, 5:18 PM
    (i.e., you could say the exact same thing about languages like cobol and such)
  • c

    codepreneur

    01/23/2017, 5:20 PM
    graph.cool clearly tries to be the next firebase ๐Ÿ˜„
  • c

    cullan

    01/23/2017, 5:21 PM
    The main page says that serverless functions for fine grained permissions are in beta. Is more information about that available? I need to be able to set up table and row level permissions for individual users as well as roles.
  • s

    sorenbs

    01/23/2017, 5:30 PM
    Hi Cullan. It sounds like what you want can be achieved with Permission Queries. @nilan will reach out to you when he is back in the office with more information.
    ๐Ÿ‘ 1
  • c

    cullan

    01/23/2017, 5:37 PM
    @sorenbs Thank you. I am pretty impressed so far. Nice work on the intro tutorial.
    ๐Ÿ™Œ 2
  • s

    schickling

    01/23/2017, 6:56 PM
    Hey <!everyone>! We have exciting news: ๐ŸŽ‰ Weโ€™ve just announced GraphQL-Europe - Europeโ€™s first GraphQL conference (itโ€™s non-profit btw). As many of you are actually based in Europe, we thought this might be a fantastic opportunity to meet everybody and learn more about GraphQL graphql https://graphql-europe.org/
    ๐Ÿš€ 7
    ๐Ÿ‡ช๐Ÿ‡บ 6
    ๐ŸŽ‰ 15
    ๐Ÿ’ฏ 9
    ๐Ÿ‘ 9
    graphcool 12
    graphql 11
    ๐Ÿ™Œ 6
    ๐Ÿค– 4
    ๐Ÿค“ 5
    ๐Ÿฆœ 13
  • j

    jonas28

    01/23/2017, 6:56 PM
    niceโ€ฆ i already signed up.
    ๐Ÿ‘ 2
  • c

    codepreneur

    01/23/2017, 7:06 PM
    @schickling how much ?
  • s

    schickling

    01/23/2017, 7:07 PM
    The tickets (including prices) will be available during February.
  • c

    codepreneur

    01/23/2017, 7:07 PM
    what is your estimate? or you dont know (about the prices)
  • c

    codepreneur

    01/23/2017, 7:07 PM
    cause it depends on how many people signup/give talks ?
  • c

    codepreneur

    01/23/2017, 7:07 PM
    and on sponsors?
  • n

    nicklewis

    01/23/2017, 8:03 PM
    Signed up too
  • s

    sorenbs

    01/23/2017, 8:19 PM
    We just implemented support for Apollo Query Batching on Graphcool. If anybody <!here|@here> is using Apollo and curious about optimising your performance I would love to talk to you ๐Ÿ™‚
    โค๏ธ 4
    ๐ŸŽ‰ 11
    ๐Ÿ‘ 4
  • t

    tychota

    01/23/2017, 8:21 PM
    @schickling : signed up too !!
    ๐Ÿ˜› 1
  • c

    charlieroth

    01/23/2017, 9:51 PM
    So I am trying to log in a user with this mutation:
    Copy code
    const LoginUserMutation = gql
      mutation signinUser(email: {$email: String!, $password: String!}){
        signinUser(email: {email: $email, password: $password }) {
          token
        }
    }
    Except when ever I run my app I get the following error:
    Copy code
    Uncaught Error: Syntax Error GraphQL (2:23) Expected $, found Name "email"
    
    1: 
    2:   mutation signinUser(email: {$email: String!, $password: String!}){
                             ^
    3:     signinUser(email: {email: $email, password: $password }) {
    I understand that it wants a $email on line 2 but then how does the mutation know which
    $email
    I am referring to on line 3?
  • n

    nilan

    01/23/2017, 9:53 PM
    can you rename your
    $email
    variable to something else please? curious to see if that fixes it
  • n

    nilan

    01/23/2017, 9:53 PM
    cc @charlieroth
  • c

    charlieroth

    01/23/2017, 9:53 PM
    Doesnโ€™t it have to be named that since I am using the Email auth provider?
  • c

    charlieroth

    01/23/2017, 9:53 PM
    @nilan
  • n

    nilan

    01/23/2017, 9:54 PM
    a variable can be named however you like
  • n

    nilan

    01/23/2017, 9:54 PM
    the field you assign it to has to be called
    email
    , yep
  • c

    charlieroth

    01/23/2017, 9:54 PM
    Oh okay I am just going off the code snippets in the docs
1...848586...637Latest