You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
192 B

import strawberry.django
from strawberry import auto
from app.models import Task
@strawberry.django.type(model=Task)
class TaskType:
title: auto
description: auto
is_done: auto
id: auto