crud graphql with laravel for learing purpose, im using this library https://github.com/rebing/graphql-laravel
there are another lib also im considering https://github.com/nuwave/lighthouse.
next i'll try this one
install
run migration
run seeder
$ composer install
$ php artisan migrate:fresh --seedfor testing you can use any graphql client, im using graphiql via browser
$ php artisan servequery{
products{
name
description
quantity
}
}with relationship
query{
user(id:1){
name
email
products{
name
description
quantity
}
}
}