Skip to content

Instantly share code, notes, and snippets.

@ElderSam
Created November 7, 2024 17:38
Show Gist options
  • Save ElderSam/0be0d7b4e04b050ee3b2240e8099bb10 to your computer and use it in GitHub Desktop.
Save ElderSam/0be0d7b4e04b050ee3b2240e8099bb10 to your computer and use it in GitHub Desktop.
// pergunta no FÓRUM: https://app.rocketseat.com.br/h/forum/node-js/9085625a-3d2e-4f88-8604-a02096bfe3bd
// Código: https://github.com/andregparada/cookbook/blob/main/prisma/schema.prisma
// Entre em https://jsoncrack.com/editor, clique em File -> Importar. Peque o código abaixo. Apague os comentários.
{
"id": "...",
"name": "João Gomes",
"email": "[email protected]",
"password_hash": "***",
"role": "ADMIN",
"created_at": "2024-11-07 08:00:00",
"dishes": [
{
"id": "...",
"name": "Arroz Carreteiro",
"description": "... ",
"instructions": "?",
"duration": null,
"difficulty": null,
"cost": null,
"prep_time": null,
"cook_time": null,
"ingredients": [
{
"id": "...",
"name": "Arroz",
"cost": 1.2,
"dishes": "OBS: NÃO ENTENDI O MOTIVO DE TER UM ARRAY IngredientsOnDishes AQUI",
},
{
"id": "...",
"name": "bacon fatiado",
"cost": 5
},
{
"id": "...",
"name": "tomate grande bem maduro",
"cost": 2
},
{
"id": "...",
"name": "carne seca",
"cost": 2.45
}
],
"tags": [
{
"id": "...",
"title": "arroz",
"dishes": "OBS: NÃO ENTENDI O MOTIVO DE TER UM ARRAY Dish AQUI"
},
{
"id": "...",
"title": "outra tag"
}
],
"user": "?",
"user_id": "..."
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment