Get all predicates and their details

Hi,

I want to get all the predicates and their detail info instead of giving the specific predicates. Is it possible?

What I am doing is

{

bd(func: eq(name, ‘Abc’))

@filter(eq(age, 24)) {

   name
     age
     follows {
            name
            age
       }

}
}

What I want is to get all filtered data instead of giving the specific predicates “name”,“age”,“follows”

This question isn’t clear to me. But you can try.

{
   bd(func: eq(name, ‘Abc’)) @filter(eq(age, 24)) {
      uid expand(_all_) {
          uid expand(_all_)
       }
    }
}

which info? or details.