Indexer panics at runtime

Hi @rashad , I was getting this error Failed to build indexer due to `ContractId` not found in this scope when i add ABI path in the manifest file so i did not add the ABI path as you can clearly see on the manifest file which i posted on my earlier comment also i have just used basic graphql schema you can find it below.

schema {
    query: QueryRoot
}

type QueryRoot {
   nft: NftList
}


type NftList {
    id : ID!
    nft_contract: ContractId!
    token_id: UInt8!
    price : UInt8!
}