Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions libs/garf_core/garf_core/query_editor.py
Original file line number Diff line number Diff line change
Expand Up @@ -231,15 +231,14 @@ class BaseQueryElements:
"""Contains raw query and parsed elements.

Attributes:
query_title: Title of the query that needs to be parsed.
query_text: Text of the query that needs to be parsed.
title: Title of the query that needs to be parsed.
text: Text of the query that needs to be parsed.
resource_name: Name of Google Ads API reporting resource.
fields: Ads API fields that need to be fetched.
column_names: Friendly names for fields which are used when saving data
column_names: Friendly names for fields which are used when saving data
customizers: Attributes of fields that need to be be extracted.
virtual_columns: Attributes of fields that need to be be calculated.
is_constant_resource: Whether resource considered a constant one.
is_builtin_query: Whether query is built-in.
"""

Expand All @@ -256,6 +255,7 @@ class BaseQueryElements:
virtual_columns: dict[str, VirtualColumn] = dataclasses.field(
default_factory=dict
)
is_builtin_query: bool = False

def __eq__(self, other: BaseQueryElements) -> bool: # noqa: D105
return (
Expand Down
Loading