how do i view previous versions of a flow and see ...
# ask-community
j
how do i view previous versions of a flow and see their creation date and by whom? https://docs.prefect.io/orchestration/concepts/flows.html#ui
k
If you select an old version of the Flow in the UI, you can find the info
j
Is there any way to see it as a table? The UI takes very long right now to load individual flows and I’m trying to figure out around when a change went into effect
k
You would need to manipulate the results from the GraphQL API:
Copy code
query {
  flow(where: {name: {_eq: "map_testing_fixed"}}){
    flow_group_id
    name
    versions {
      id
      created
      created_by {
        id
        username
        last_name
        first_name
      }
    }
  }
}