Currently we are using these queries to search extrinsics and events by name
query MyQuery {
extrinsics(where: {call: {name_eq: "Balances.transfer"}}, limit: 10, orderBy: id_DESC) {
id
}
events(where: {name_eq: "Balances.transfer"}, limit: 10, orderBy: id_DESC) {
id
}