Humza Tareen

Results 11 comments of Humza Tareen

I would refer you to the detailed [documentation](https://age.apache.org/age-manual/master/intro/agload.html) for deeper insights on the function

I recently published a blog regarding this. You can follow it step by step https://dev.to/humzakt/getting-started-with-age-and-postgresql-setting-up-and-modifying-the-source-code-49n3

Models isn't defined in `models.py`. You can check https://github.com/rhizome-ai/apache-age-python/blob/main/age/models.py for all available classes which you can import

Can you share the complete query you are writing along with a screenshot of your terminal for better diagnosis? Also make sure you have imported AGE correctly and you are...

I believe you are not editing and loading the code correctly. Have a look at this article for detailed guidance [Guide to Modifying the Apache Age Source code](https://dev.to/humzakt/getting-started-with-age-and-postgresql-setting-up-and-modifying-the-source-code-49n3)

It seems like the foreign key constraints on your edges table are set to CASCADE DELETE. This means that when an edge is deleted, the corresponding vertices get deleted as...

Yes, you can indeed update properties for multiple nodes without specifying each node individually. The exact query will depend on your specific criteria for which nodes to update, but here...

The error message "CASE types agtype and boolean cannot be matched" suggests that there may be an issue with the data types being used in your CASE statement. The CASE...

I have tested this implementation using the following code ``` import ivy import ivy.functional.frontends.paddle as ivy_paddle ivy.set_paddle_backend() print("backend: ",ivy.backend) data = ivy_paddle.arange(start=0, end=10, step=1, dtype=ivy_paddle.float32, name=None) print("data: ",data) print("data shape:...

> Hi @humzakt,You have to write the test for the function that you are adding in this file `ivy_tests/test_ivy/test_frontends/test_paddle/test_tensor/test_paddle_random.py`.Please follow the way `uniform` has been added for your reference I...