Posts by ArieLopes • 13 points
2 posts
-
0
votes0
answers63
viewsQ: Knex - Nodejs Doubt (Graphql)
I want to return all my data from this table in my database. I am making the following query: async licitacaoAll(_, { dados }) { if (!dados) return null const { ativo } = dados return await…
-
1
votes1
answer402
viewsQ: Laravel - Eloquent Many to Many
I have this structure Migration from the Exercise table public function up() { Schema::create('exercicio', function(Blueprint $table) { $table->increments('id');…