File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @useorbis/db-sdk" ,
3
- "version" : " 0.0.8 -alpha" ,
3
+ "version" : " 0.0.9 -alpha" ,
4
4
"description" : " Orbis' Typescript SDK for building open-data experiences." ,
5
5
"keywords" : [
6
6
" web3" ,
Original file line number Diff line number Diff line change @@ -85,14 +85,14 @@ export class QueryBuilder {
85
85
if ( this . isSelectStatement ( query ) ) {
86
86
let modelId ;
87
87
const tableName = ( query as any ) . _single . table ; // Get the table name from the query
88
-
88
+ console . log ( "tableName:" , tableName ) ;
89
89
// Check if developer used directly a model id or a readable table name
90
90
if ( tableName . startsWith ( "kjzl6" ) ) {
91
91
modelId = tableName ;
92
92
} else {
93
93
// Get the model ID mapped to this table name in instance settings
94
94
modelId = this . #orbis. node . getTableModelId ( tableName ) ;
95
- console . log ( "modelId retrieved from getTableModelId is:" , tableName ) ;
95
+ console . log ( "modelId retrieved from getTableModelId is:" , modelId ) ;
96
96
97
97
// Force retry to load node's metadata to retrieve latest mapping and try again
98
98
if ( ! modelId ) {
You can’t perform that action at this time.
0 commit comments