Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[main < T0049-GA] Remove the argument optional from the Merge class #118

Merged
merged 2 commits into from Apr 1, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions gqlalchemy/query_builder.py
Expand Up @@ -602,9 +602,9 @@ def __init__(self, optional: bool = False, connection: Optional[Union[Connection


class Merge(DeclarativeBase):
def __init__(self, optional: bool = False, connection: Optional[Union[Connection, Memgraph]] = None):
def __init__(self, connection: Optional[Union[Connection, Memgraph]] = None):
super().__init__(connection)
self._query.append(MergePartialQuery(optional))
self._query.append(MergePartialQuery())


class Call(DeclarativeBase):
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
@@ -1,6 +1,6 @@
[tool.poetry]
name = "GQLAlchemy"
version = "1.1.4"
version = "1.1.5"
description = "GQLAlchemy is library developed with purpose of assisting writing and running queries on Memgraph."
repository = "https://github.com/memgraph/gqlalchemy"
authors = [
Expand Down