Hi, question about log schema when using GraphQL A...
# ask-community
k
Hi, question about log schema when using GraphQL API. Each log entry used to have "info" field with additional information like function name and filepath, but in 0.15 it seems to be always null. Can this be re-enabled somehow in configuration?
Query that I'm using:
Copy code
query {
  flow_run(where: {id: {_eq: "f3e14db5-44c0-4e24-92c2-c6b8fc4ae9c8"}}) {
    id
    name
    flow {
      name
    }
    state
    task_runs {
      map_index
      task {
        slug
        id
      }
      logs {
         level
         info
         message
         name
         timestamp
      }
    }
  }
}
k
Hey @Krzysztof Nawara, it used to be a JSON blob that repeated a bunch of other data so we stopped sending it.
Actually it seems we just stopped including this data in the payload and there is no way to get it unfortunately.
k
I see, thanks for investigating 🙂