Code Monkey home page Code Monkey logo

social-networking-app's People

Contributors

eddieysong avatar flippingbitss avatar myotintaye avatar

Stargazers

 avatar

Watchers

 avatar  avatar  avatar  avatar  avatar

social-networking-app's Issues

Unable to get detailed GraphQL error information in React component

  async addNewUser(input) {
    // console.log(input);
    try {
      const result = await knex(USER_TABLE).insert(input);
      return this.getUserById(result);
    } catch (e) {
      console.log (e);
      throw (e);
    }
    // Ed:
    // the problem here is that Apollo will catch the error first,
    // and it will eat most of the information
    // and return a simplified error object that doesn't contain properties like "code"
  }

yields

{ Error: ER_DUP_ENTRY: Duplicate entry 'asd' for key 'user_email_unique'
    at Query.Sequence._packetToError (C:\CentennialCollegeF2017\social-networking-app\node_modules\mysql\lib\protocol\sequences\Sequence.js:52:14)
    at Query.ErrorPacket (C:\CentennialCollegeF2017\social-networking-app\node_modules\mysql\lib\protocol\sequences\Query.js:77:18)
    at Protocol._parsePacket (C:\CentennialCollegeF2017\social-networking-app\node_modules\mysql\lib\protocol\Protocol.js:279:23)
    at Parser.write (C:\CentennialCollegeF2017\social-networking-app\node_modules\mysql\lib\protocol\Parser.js:76:12)
    at Protocol.write (C:\CentennialCollegeF2017\social-networking-app\node_modules\mysql\lib\protocol\Protocol.js:39:16)
    at Socket.<anonymous> (C:\CentennialCollegeF2017\social-networking-app\node_modules\mysql\lib\Connection.js:103:28)
    at emitOne (events.js:115:13)
    at Socket.emit (events.js:210:7)
    at addChunk (_stream_readable.js:264:12)
    at readableAddChunk (_stream_readable.js:251:11)
    at Socket.Readable.push (_stream_readable.js:209:10)
    at TCP.onread (net.js:587:20)
    at Protocol._enqueue (C:\CentennialCollegeF2017\social-networking-app\node_modules\mysql\lib\protocol\Protocol.js:145:48)
    at Connection.query (C:\CentennialCollegeF2017\social-networking-app\node_modules\mysql\lib\Connection.js:208:25)
    at C:\CentennialCollegeF2017\social-networking-app\node_modules\knex\lib\dialects\mysql\index.js:152:18
From previous event:
    at Client_MySQL._query (C:\CentennialCollegeF2017\social-networking-app\node_modules\knex\lib\dialects\mysql\index.js:146:12)
    at Client_MySQL.query (C:\CentennialCollegeF2017\social-networking-app\node_modules\knex\lib\client.js:197:17)
    at Runner.<anonymous> (C:\CentennialCollegeF2017\social-networking-app\node_modules\knex\lib\runner.js:146:36)
From previous event:
    at C:\CentennialCollegeF2017\social-networking-app\node_modules\knex\lib\runner.js:65:21
    at runCallback (timers.js:785:20)
    at tryOnImmediate (timers.js:747:5)
    at processImmediate [as _immediateCallback] (timers.js:718:5)
From previous event:
    at Runner.run (C:\CentennialCollegeF2017\social-networking-app\node_modules\knex\lib\runner.js:51:31)
    at Builder.Target.then (C:\CentennialCollegeF2017\social-networking-app\node_modules\knex\lib\interface.js:35:43)
  code: 'ER_DUP_ENTRY',
  errno: 1062,
  sqlMessage: 'Duplicate entry \'asd\' for key \'user_email_unique\'',
  sqlState: '23000',
  index: 0,
  sql: 'insert into `user` (`email`, `firstName`, `lastName`) values (\'asd\', \'asd\', \'asd\')' }

But in the React component's handleClick method

    handleClick = () => {
        this.props.mutate({
            variables: {
                input: {
                    firstName: this.state.firstName,
                    lastName: this.state.lastName,
                    email: this.state.email,
                }
            }
        }).catch(err => {
            console.log(err);
        });
    }

yields

Error: ER_DUP_ENTRY: Duplicate entry 'asd' for key 'user_email_unique'
    at Query.Sequence._packetToError (C:\CentennialCollegeF2017\social-networking-app\node_modules\mysql\lib\protocol\sequences\Sequence.js:52:14)
    at Query.ErrorPacket (C:\CentennialCollegeF2017\social-networking-app\node_modules\mysql\lib\protocol\sequences\Query.js:77:18)
    at Protocol._parsePacket (C:\CentennialCollegeF2017\social-networking-app\node_modules\mysql\lib\protocol\Protocol.js:279:23)
    at Parser.write (C:\CentennialCollegeF2017\social-networking-app\node_modules\mysql\lib\protocol\Parser.js:76:12)
    at Protocol.write (C:\CentennialCollegeF2017\social-networking-app\node_modules\mysql\lib\protocol\Protocol.js:39:16)
    at Socket.<anonymous> (C:\CentennialCollegeF2017\social-networking-app\node_modules\mysql\lib\Connection.js:103:28)
    at emitOne (events.js:115:13)
    at Socket.emit (events.js:210:7)
    at addChunk (_stream_readable.js:264:12)
    at readableAddChunk (_stream_readable.js:251:11)
    at Socket.Readable.push (_stream_readable.js:209:10)
    at TCP.onread (net.js:587:20)
    at Protocol._enqueue (C:\CentennialCollegeF2017\social-networking-app\node_modules\mysql\lib\protocol\Protocol.js:145:48)
    at Connection.query (C:\CentennialCollegeF2017\social-networking-app\node_modules\mysql\lib\Connection.js:208:25)
    at C:\CentennialCollegeF2017\social-networking-app\node_modules\knex\lib\dialects\mysql\index.js:152:18
From previous event:
    at Client_MySQL._query (C:\CentennialCollegeF2017\social-networking-app\node_modules\knex\lib\dialects\mysql\index.js:146:12)
    at Client_MySQL.query (C:\CentennialCollegeF2017\social-networking-app\node_modules\knex\lib\client.js:197:17)
    at Runner.<anonymous> (C:\CentennialCollegeF2017\social-networking-app\node_modules\knex\lib\runner.js:146:36)
From previous event:
    at C:\CentennialCollegeF2017\social-networking-app\node_modules\knex\lib\runner.js:65:21
    at runCallback (timers.js:785:20)
    at tryOnImmediate (timers.js:747:5)
    at processImmediate [as _immediateCallback] (timers.js:718:5)
From previous event:
    at Runner.run (C:\CentennialCollegeF2017\social-networking-app\node_modules\knex\lib\runner.js:51:31)
    at Builder.Target.then (C:\CentennialCollegeF2017\social-networking-app\node_modules\knex\lib\interface.js:35:43)

The error no longer contains useful information like code: 'ER_DUP_ENTRY', that we can use to handle errors gracefully.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.