Take this GraphQL Admin API request and run on your store.
query themes {
themes(first: 1, roles: [MAIN]) {
edges {
node {
files(filenames: ["config/settings_data.json"]) {
nodes {
filename
body {
... on OnlineStoreThemeFileBodyText {
content
}
}
}
}
}
}
}
}
The returned file is a JSON containing multiline comment. Here you can find the RFC: RFC 8259 - The JavaScript Object Notation (JSON) Data Interchange Format . Please read it.
