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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: bootgraph
3
- Version: 1.20.0.dev34111
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]["type"]
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.dev34111"
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"