Lyrical-GraphQL icon indicating copy to clipboard operation
Lyrical-GraphQL copied to clipboard

Starter project from a GraphQL course on Udemy.com

Results 24 Lyrical-GraphQL issues
Sort by recently updated
recently updated
newest added

This PR addresses the below issue: Bug fix: Deleting a record by its ID - A bug was identified in the record deletion functionality where records could not be properly...

Or take a look at my forked project https://github.com/tchesa/Lyrical-GraphQL

On mutations.js, deleteSong's mutation is using findOneAndRemove method which removes the wrong ID. I would suggest to switch to findByIdAndRemove, otherwise on the apollo client mutation one is forced to...

As mentioned [here](https://github.com/Automattic/mongoose/issues/5924), mongodb dropped support of `$pushAll` since 3.6, which caused `Unknown modifier: $pushAll` for me and some other people. Overriding mongoose settings to always use `usePushEach` solved the...

This updates the app to use the latest version of apollo client which has changed quite a bit since the start of this tutorial. Changed all class components to be...

The mutation `addLyricToSong` was failing with an error "Unknown modifier $pushAll". I think this is because mlab are now using a later version of MongoDB. Updating the mongoose package seems...

When added the following code: > > > ); ------ Error raised: bundle.js:356 Warning: Failed prop type: Invalid prop `children` of type `array` supplied to `ApolloProvider`, expected a single ReactElement....