Skip to main content
Version: 6.0.0

GetAllTableList

public BackndReturnObject GetAllTableList();

Description

Looks up charts registered in BACKND Console.
A chart is data from the Excel file uploaded to and applied in the chart management section of BACKND Console.

Upon lookup, the chart name, chart ID/UUID, and the chart's version are returned, and chart data is not included.

Differences with GetDataTableList

There are a few differences between this method and GetDataTableList.

  • DataTables where files cannot be applied are excluded
  • JSON return values do not have the 'old' column.
Note on migration from GetDataTableList

Check the following when migrating from the GetDataTableList() method to the GetAllTableList() method:

  • If 'old' is used for parsing JSON(e.g., json["rows"][0]["S"]["old"].ToString())
  • If there is a logic for charts without files applied

Example

Synchronous

Backnd.DataTable.GetAllTableList();

Asynchronous

Backnd.DataTable.GetAllTableList((callback) => {
// Post-process
});

Return cases

Success cases

When the lookup is successful
statusCode : 200

returnValue : refer to GetReturnValuetoJSON

GetReturnValuetoJSON

{
rows:
[
{
// DataTable name
chartName: { S: "Monster chart" },
// DataTable description
chartExplain: { NULL: true },
// Applied chart file id(if present)
selectedDataTableFileId: { N: "47" },
},
{
chartName: { S: "ItemDataTable" },
chartExplain: { S : "This chart has item information." },
selectedDataTableFileId: { N: "47423" },
}
]
}

Sample code

public class DataTableFile
{
public string chartName; // DataTable name
public string chartExplain; // DataTable description
public int selectedDataTableFileId;// DataTable file ID

public override string ToString()
{
return $"chartName: {chartName}\n" +
$"chartExplain: {chartExplain}\n" +
$"selectedDataTableFileId: {selectedDataTableFileId}\n";
}
}
public void GetAllTableListTest()
{
var bro = Backnd.DataTable.GetAllTableList();

if(!bro.IsSuccess())
{
Debug.LogError("An error occurred : " + bro.ToString());
return;
}

List<DataTableFile> chartCardList = new List<DataTableFile>();

BACKND.LitJson.JsonData json = bro.FlattenRows();

for(int i = 0; i < json.Count; i++)
{
DataTableFile chartCard = new DataTableFile();

chartCard.chartName = json[i]["chartName"].ToString();
chartCard.chartExplain = json[i]["chartExplain"].ToString();
chartCard.selectedDataTableFileId= json[i]["selectedDataTableFileId"].ToString();

chartCardList.Add(chartCard);
}

foreach(var chartCard in chartCardList)
{
Debug.Log(chartCard.ToString() + "\n");
}
}