mirror of
https://github.com/nocodb/nocodb.git
synced 2026-04-29 16:37:09 +00:00
feat: GQL - M2M many to many
Signed-off-by: Pranav C <61551451+pranavxc@users.noreply.github.com>
This commit is contained in:
@@ -74,15 +74,15 @@ export default class GqlApi {
|
||||
}
|
||||
|
||||
get gqlQueryListName() {
|
||||
return `${this.table.replace(/(?:^|_)(.)/g, (_, m) => m.toUpperCase())}List`;
|
||||
return `${this.meta._tn}List`;
|
||||
}
|
||||
|
||||
get gqlQueryReadName() {
|
||||
return `${this.table.replace(/(?:^|_)(.)/g, (_, m) => m.toUpperCase())}Read`;
|
||||
return `${this.meta._tn}Read`;
|
||||
}
|
||||
|
||||
get tableCamelized() {
|
||||
return `${this.table.replace(/(?:^|_)(.)/g, (_, m) => m.toUpperCase())}`;
|
||||
return `${this.meta._tn}`;
|
||||
}
|
||||
|
||||
get gqlReqBody() {
|
||||
|
||||
Reference in New Issue
Block a user