File tree Expand file tree Collapse file tree 1 file changed +0
-26
lines changed
cesnet_service_path_plugin/graphql Expand file tree Collapse file tree 1 file changed +0
-26
lines changed Original file line number Diff line number Diff line change 2828)
2929
3030
31- @strawberry .input
32- class TypeSpecificNumericFilter :
33- """Input type for filtering type-specific numeric fields"""
34-
35- exact : Optional [float ] = None
36- gt : Optional [float ] = None
37- gte : Optional [float ] = None
38- lt : Optional [float ] = None
39- lte : Optional [float ] = None
40- range_min : Optional [float ] = None
41- range_max : Optional [float ] = None
42-
43-
44- @strawberry .input
45- class TypeSpecificIntegerFilter :
46- """Input type for filtering type-specific integer fields"""
47-
48- exact : Optional [int ] = None
49- gt : Optional [int ] = None
50- gte : Optional [int ] = None
51- lt : Optional [int ] = None
52- lte : Optional [int ] = None
53- range_min : Optional [int ] = None
54- range_max : Optional [int ] = None
55-
56-
5731@strawberry_django .filter (Segment , lookups = True )
5832class SegmentFilter (NetBoxModelFilterMixin ):
5933 """GraphQL filter for Segment model"""
You can’t perform that action at this time.
0 commit comments