Skip to content

Commit

Permalink
Make suggested name changes
Browse files Browse the repository at this point in the history
  • Loading branch information
enoua5 committed Oct 6, 2024
1 parent 7d7f24b commit 4524483
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 17 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
query OptionalListOfPeople {
query OperationName {
optionalListOfPeople {
name
age
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
from typing import List, Optional

class OperationNameResultOptionalListOfPeople:
name: str
age: int

class OperationNameResult:
optional_list_of_people: Optional[List[OperationNameResultOptionalListOfPeople]]
8 changes: 0 additions & 8 deletions tests/codegen/snapshots/python/optional_list_of_people.py

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
type OperationNameResultOptionalListOfPeople = {
name: string
age: number
}

type OperationNameResult = {
optional_list_of_people: OperationNameResultOptionalListOfPeople[] | undefined
}
8 changes: 0 additions & 8 deletions tests/codegen/snapshots/typescript/optional_list_of_people.ts

This file was deleted.

0 comments on commit 4524483

Please sign in to comment.