Custom Table Name #9419
Replies: 2 comments 8 replies
-
Hello @Tejesh-Duvvuru Please follow these steps in order to track your table with custom name. Step 1: First, untrack the tableIf your table is already tracked, then first you’ll need to untrack that table. You can use Example payload {
"type": "pg_untrack_table",
"args": {
"table": {
"schema": "public",
"name": “Devices”
},
"source": "default",
"cascade": true
}
} Step 2: Track the table with new custom nameThen to make it track with a new custom name, use In the above API ref docs, see the 2nd paragraph where it mentions the use case of custom name. Example payload {
"type": "pg_track_table",
"args": {
"source": "default",
"table": "Devices",
"configuration": {
"custom_name": "my_devices"
}
}
} Making API requests to
|
Beta Was this translation helpful? Give feedback.
-
@meetzaveri { |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
I am using cloud account my problem is with table names when we created table name we use - (table1-dev) like that but now problem is hasura( graphql) not recognizing them. I can't rename table is production because it will cause so many problems. Is there any use to custom table name hasura.
Beta Was this translation helpful? Give feedback.
All reactions