bootgraph 1.20.0.dev34111__tar.gz → 1.20.0.dev34358__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {bootgraph-1.20.0.dev34111 → bootgraph-1.20.0.dev34358}/PKG-INFO +1 -1
- {bootgraph-1.20.0.dev34111 → bootgraph-1.20.0.dev34358}/bootgraph/schemas/generators.py +3 -1
- {bootgraph-1.20.0.dev34111 → bootgraph-1.20.0.dev34358}/pyproject.toml +1 -1
- {bootgraph-1.20.0.dev34111 → bootgraph-1.20.0.dev34358}/.gitignore +0 -0
- {bootgraph-1.20.0.dev34111 → bootgraph-1.20.0.dev34358}/LICENSE +0 -0
- {bootgraph-1.20.0.dev34111 → bootgraph-1.20.0.dev34358}/README.md +0 -0
- {bootgraph-1.20.0.dev34111 → bootgraph-1.20.0.dev34358}/bootgraph/__init__.py +0 -0
- {bootgraph-1.20.0.dev34111 → bootgraph-1.20.0.dev34358}/bootgraph/database/__init__.py +0 -0
- {bootgraph-1.20.0.dev34111 → bootgraph-1.20.0.dev34358}/bootgraph/database/filter_builders/__init__.py +0 -0
- {bootgraph-1.20.0.dev34111 → bootgraph-1.20.0.dev34358}/bootgraph/database/operations.py +0 -0
- {bootgraph-1.20.0.dev34111 → bootgraph-1.20.0.dev34358}/bootgraph/database/utils.py +0 -0
- {bootgraph-1.20.0.dev34111 → bootgraph-1.20.0.dev34358}/bootgraph/dl.py +0 -0
- {bootgraph-1.20.0.dev34111 → bootgraph-1.20.0.dev34358}/bootgraph/models.py +0 -0
- {bootgraph-1.20.0.dev34111 → bootgraph-1.20.0.dev34358}/bootgraph/router.py +0 -0
- {bootgraph-1.20.0.dev34111 → bootgraph-1.20.0.dev34358}/bootgraph/schemas/__init__.py +0 -0
- {bootgraph-1.20.0.dev34111 → bootgraph-1.20.0.dev34358}/bootgraph/schemas/models.py +0 -0
- {bootgraph-1.20.0.dev34111 → bootgraph-1.20.0.dev34358}/bootgraph/setup.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: bootgraph
|
|
3
|
-
Version: 1.20.0.
|
|
3
|
+
Version: 1.20.0.dev34358
|
|
4
4
|
Summary: A Python library for integrating SQLModel and Strawberry, providing a seamless GraphQL integration with FastAPI and advanced features for database interactions.
|
|
5
5
|
Author-email: Pavel Mulin <mulin.pasha@gmail.com>
|
|
6
6
|
License: MIT
|
|
@@ -781,7 +781,9 @@ def create_filter_input(cls: type[SQLModel], name_suffix="Filter"):
|
|
|
781
781
|
|
|
782
782
|
# process external field_names
|
|
783
783
|
for field_name in set(declared_filters.keys()) - internal_type_filters:
|
|
784
|
-
graphql_type = declared_filters[field_name]
|
|
784
|
+
graphql_type = declared_filters[field_name].get("type")
|
|
785
|
+
if not graphql_type:
|
|
786
|
+
continue
|
|
785
787
|
if declared_filters[field_name].get("is_list"):
|
|
786
788
|
graphql_type = list[graphql_type]
|
|
787
789
|
else:
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "bootgraph"
|
|
3
|
-
version = "v1.20.0.
|
|
3
|
+
version = "v1.20.0.dev34358"
|
|
4
4
|
description = "A Python library for integrating SQLModel and Strawberry, providing a seamless GraphQL integration with FastAPI and advanced features for database interactions."
|
|
5
5
|
readme = "README.md"
|
|
6
6
|
requires-python = ">=3.12"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|