Katarina Supe

Results 50 issues of Katarina Supe

good first issue
Severity - S3
Effort - Medium
feature
community
Priority - Later
Frequency - Monthly
Reach - VeryFew

Property can be list, set and tuple in node or relationship property type in the class definition. Add ndarray support.

Severity - S3
Effort - Low
feature
community
Priority - Later
Frequency - Monthly
Reach - VeryFew

Add a new query in the query builder - `ANALYZE GRAPH;` -> https://memgraph.com/docs/memgraph/reference-guide/analyze-graph

good first issue
Severity - S3
Effort - Low
feature
community
Priority - Later
Frequency - Monthly
Reach - VeryFew

Add a new query to the query builder: `STORAGE MODE IN_MEMORY_{TRANSACTIONAL|ANALYTICAL};` `STORAGE MODE ON_DISK_TRANSACTIONAL` -> https://memgraph.com/docs/memgraph/reference-guide/storage-modes

good first issue
Severity - S3
Effort - Low
feature
Priority - Later
Frequency - Monthly
Reach - VeryFew

Add the following queries to the query builder: - `SHOW TRANSACTIONS;` -> https://memgraph.com/docs/memgraph/reference-guide/transactions#show-transactions - `TERMINATE TRANSACTIONS "tid", "", "", ... ;` -> https://memgraph.com/docs/memgraph/reference-guide/transactions#terminate-transactions

good first issue
Severity - S3
Effort - Low
feature
community
Priority - Later
Frequency - Monthly
Reach - VeryFew

https://memgraph.com/docs/memgraph/reference-guide/backup

good first issue
Severity - S3
Effort - Low
feature
community
Priority - Later
Frequency - Monthly
Reach - VeryFew

https://memgraph.com/docs/memgraph/reference-guide/server-stats#storage-information

good first issue
Severity - S3
Effort - Low
feature
community
Priority - Later
Frequency - Monthly
Reach - VeryFew

https://memgraph.com/docs/memgraph/reference-guide/server-stats#build-information

good first issue
Severity - S3
Effort - Low
feature
community
Priority - Later
Frequency - Monthly
Reach - VeryFew

Below should work: ``` Python: `match().node(variable='n').to().node(variable='m').where(item='n.name', operator=Operator.IS_NOT_NULL).return_()` Cypher: `MATCH (n)-[]->(m) WHERE n.name IS NOT NULL RETURN *;` ``` Currently, there is no operator IS_NOT_NULL in Operator Enum and where() necessarily...

good first issue
Severity - S3
Effort - Low
feature
community
Priority - Later
Frequency - Monthly
Reach - VeryFew

We have both export and **importing** modules in our codebase. If we were to change any parts of our API, this should be updated too, to export and **import** module....

bug