Identifying smart contract creations, from another smart contract

hi, trying to identify smart contracts created by 1 particular smartContract (which is a factory smartContract). With the following code.
Filtering for address, and method (or perhaps I should be using event?):

query MyQuery {
ethereum {
smartContractCalls(
options: {desc: “block.height”, limit: 10}
smartContractMethod: {is: “Contract Creation”}
smartContractAddress: {is: “0xCB06dF7F0Be5B8Bb261d294Cf87C794EB9Da85b1”}
) {
block {
height
timestamp {
time
}
}
smartContract {
contractType
address {
annotation
address
}
currency {
name
symbol
decimals
tokenType
}
}
}
}
}

Can you show me a transaction where it created another smart contract?

Under internal transactions

Try this

{
  ethereum {
    smartContractCalls(options: {desc: "block.height", limit: 10}, 
      smartContractMethod: {is: "Contract Creation"},
      caller: {is: "0xCB06dF7F0Be5B8Bb261d294Cf87C794EB9Da85b1"}
      smartContractType: {is: Token}) {
      block {
        height
        timestamp {
          time
        }
      }
      smartContract {
        contractType
        address {
          address
          annotation
        }
        currency {
          name
          symbol
          decimals
          tokenType
        }
      }
    }
  }
}

cheers Gaurav! just saw this… think i doubled up