Application Data
📘 Application Schema
🟨 Application
type Application @entity {
id: ID!
name: String!
owner: Bytes!
records: [ApplicationRecord!]! @derivedFrom(field: "application")
createdAt: BigInt!
transactionHash: Bytes!
}event ApplicationSet(string name, address indexed owner);🟦 ApplicationRecord
type ApplicationRecord @entity {
id: ID!
application: Application!
recordId: BigInt!
applicationVersion: String!
companyName: String!
addressHistory: [ApplicationAddressSet!]! @derivedFrom(field: "record")
metadata: [ApplicationMetadata!]! @derivedFrom(field: "record")
createdAt: BigInt!
transactionHash: Bytes!
}🟧 ApplicationAddressSet
🟪 ApplicationMetadata
📌 Relationships Summary
Entity
Relation
Description
📚 Application Entity Structure
📦 Entity Relationship Tree
🔗 Relationship Overview
🧠 Notes
Last updated
