Emrah Aydemir

Results 8 comments of Emrah Aydemir

Hello my friend who has this problem. A very simple solution to this problem is `$exist`. Here is an example for you: ``` js repeatPassword: yup.string().when("$exist", { is: (exist) =>...

I check via PostgreSQL whether the geojson data I sent with Postman is valid. PostgreSQL confirms this. ![image](https://user-images.githubusercontent.com/35865864/190009748-533d367c-ff55-42d2-8b44-7608b5fbcd1d.png) ![image](https://user-images.githubusercontent.com/35865864/190010260-f4efe783-7d4e-47c6-827a-9eb1358ffb21.png)

I just tried `ST_MakeValid` but didnt work. I wanted to simplify the problem a little more. First, I sent the same GeoJSON data to PostgreSQL as a query. Added this...

Also, when I check before sending the geometry data, I don't see double quotes. ![image](https://user-images.githubusercontent.com/35865864/190074243-beb397d8-1c17-4517-9f43-cf235b1e4eb1.png)

I think I solved the problem. First I create a data of type "string". After Strapi saves it to the schema, I force the data type of the table to...

Hi, im using postgis 3.1. but im getting same error. "invalid geometry". **schema.json** ```json "geometry": { "columnType": { "type": "specificType", "args": [ "geometry(POINT,4326)" ] }, "type": "json", "fieldRenderer": "postgis" }...

Hello, today while developing my project, I had this problem while redirecting from my auth page to the dashboard page with different layouts. I have been trying to solve this...