Quick question, and I anticipate a simple answer! ...
# ask-community
a
Quick question, and I anticipate a simple answer! How can I define in the
config_schema
a list of one or more Shapes? I have Dagster integrated with a Django application (although I'm really only using the Django ORM). I need to perform a simple Django ORM query using one or more Django ORM filters. I'm thinking:
Copy code
Shape(
    fields={
        'operator': Selector( ... ), # and vs. or
        'tags': Field(config=list, ...),
        'slice_begin': Field(config=int, ...),
        'slice_end': Field(config=int, ...),
    },
)
But then... can I define a list of Shapes?
j
Yes
a
Thanks!